From 5d0cc3e087660b852f38b7e30b330d857ab12621 Mon Sep 17 00:00:00 2001 From: andrewpthompson Date: Mon, 17 Dec 2018 12:05:24 +1030 Subject: [PATCH] Fix e-notice only variables should be passed by reference --- CRM/Grant/Form/Task.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Grant/Form/Task.php b/CRM/Grant/Form/Task.php index 58fd8f9acf..c784136445 100644 --- a/CRM/Grant/Form/Task.php +++ b/CRM/Grant/Form/Task.php @@ -120,7 +120,7 @@ class CRM_Grant_Form_Task extends CRM_Core_Form_Task { * since its used for things like send email */ public function setContactIDs() { - $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_grantIds, + $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_grantIds, 'civicrm_grant' ); } -- 2.25.1