From 054785dcbe498e3f028f75f72f3998007f2119cc Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Thu, 3 Dec 2015 15:43:45 -0500 Subject: [PATCH] CRM-17620 - Fix undefined variable --- CRM/Contribute/Selector/Search.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Contribute/Selector/Search.php b/CRM/Contribute/Selector/Search.php index 7839b11325..06d96d025c 100644 --- a/CRM/Contribute/Selector/Search.php +++ b/CRM/Contribute/Selector/Search.php @@ -470,6 +470,7 @@ class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements C * the column headers that need to be displayed */ public function &getColumnHeaders($action = NULL, $output = NULL) { + $pre = array(); self::$_columnHeaders = array( array( 'name' => $this->_includeSoftCredits ? ts('Contribution Amount') : ts('Amount'), -- 2.25.1