From: eileen Date: Fri, 6 Apr 2018 00:31:39 +0000 (+1200) Subject: Prevent hard-fail when section header / group by option chosen on logging report X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=cb75c53ae4771ae43d7a278cc0fa30bb65127040;p=civicrm-core.git Prevent hard-fail when section header / group by option chosen on logging report --- diff --git a/CRM/Report/Form/Contact/LoggingSummary.php b/CRM/Report/Form/Contact/LoggingSummary.php index 07e42abfa5..c8a2d48754 100644 --- a/CRM/Report/Form/Contact/LoggingSummary.php +++ b/CRM/Report/Form/Contact/LoggingSummary.php @@ -352,4 +352,11 @@ LEFT JOIN civicrm_contact altered_by_contact_civireport return $row; } + /** + * Calculate section totals. + * + * Override to do nothing as this does not work / make sense on this report. + */ + public function sectionTotals() {} + }