X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FReport%2FForm%2FContribute%2FLoggingSummary.php;h=28c79bd7f9cab0d74313928edf32ac82d6affc62;hb=22aaf44c61e5bcf7035826cb48cdf4befbbe07ab;hp=e3aa257a1c60a47d147dc3ebaf987724be94a52f;hpb=fc39f196c427ec3f13f2a240967bd36f426e9609;p=civicrm-core.git diff --git a/CRM/Report/Form/Contribute/LoggingSummary.php b/CRM/Report/Form/Contribute/LoggingSummary.php index e3aa257a1c..28c79bd7f9 100644 --- a/CRM/Report/Form/Contribute/LoggingSummary.php +++ b/CRM/Report/Form/Contribute/LoggingSummary.php @@ -1,8 +1,7 @@ _columns = array( 'civicrm_contact_altered_contact' => array( 'dao' => 'CRM_Contact_DAO_Contact', @@ -178,7 +176,7 @@ class CRM_Report_Form_Contribute_LoggingSummary extends CRM_Logging_ReportSummar /** * @param $rows */ - function alterDisplay(&$rows) { + public function alterDisplay(&$rows) { // cache for id → is_deleted mapping $isDeleted = array(); @@ -208,7 +206,7 @@ class CRM_Report_Form_Contribute_LoggingSummary extends CRM_Logging_ReportSummar $url = CRM_Report_Utils_Report::getNextUrl('logging/contribute/detail', $q, FALSE, TRUE); $row['log_civicrm_contribution_log_action_link'] = $url; $row['log_civicrm_contribution_log_action_hover'] = ts('View details for this update'); - $row['log_civicrm_contribution_log_action'] = '
' . ts('Update'); + $row['log_civicrm_contribution_log_action'] = '
' . ts('Update'); } unset($row['log_civicrm_contribute_log_user_id']); @@ -216,7 +214,7 @@ class CRM_Report_Form_Contribute_LoggingSummary extends CRM_Logging_ReportSummar } } - function from() { + public function from() { $this->_from = " FROM `{$this->loggingDB}`.log_civicrm_contribution {$this->_aliases['log_civicrm_contribution']} LEFT JOIN civicrm_contact {$this->_aliases['civicrm_contact_altered_by']} @@ -233,4 +231,3 @@ class CRM_Report_Form_Contribute_LoggingSummary extends CRM_Logging_ReportSummar "; } } -