From 4cbc8e37407f731609aac26701f635d4ea7eb6b2 Mon Sep 17 00:00:00 2001 From: Samuel Vanhove Date: Fri, 2 Jul 2021 14:47:24 -0400 Subject: [PATCH] Make report subtotals work for custom fields --- CRM/Report/Form.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index de0bb7b24f..bda33f11dc 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -3250,6 +3250,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND // let $this->_alterDisplay translate any integer ids to human-readable values. $rows[0] = $dao->toArray(); $this->alterDisplay($rows); + $this->alterCustomDataDisplay($rows); $row = $rows[0]; // add totals for all permutations of section values -- 2.25.1