From 7e597787110b0e4ed62390e1c048fe75f33dac0c Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Tue, 13 May 2014 10:32:46 -0400 Subject: [PATCH] CRM-14680 - ensure custom tables included in sql statement Fix for the Contribution Aggregate by Relationship report. ---------------------------------------- * CRM-14680: Contribution Aggregate by Relationship report fails with custom contribution field https://issues.civicrm.org/jira/browse/CRM-14680 --- CRM/Report/Form/Contribute/History.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Report/Form/Contribute/History.php b/CRM/Report/Form/Contribute/History.php index 413588a7fb..4a3b4bbe2f 100644 --- a/CRM/Report/Form/Contribute/History.php +++ b/CRM/Report/Form/Contribute/History.php @@ -495,6 +495,7 @@ class CRM_Report_Form_Contribute_History extends CRM_Report_Form { $this->select(); $this->where(); $this->from(); + $this->customDataFrom(); $this->groupBy(); $rows = array(); -- 2.25.1