From 9e7fec136cf43f394cbbdfdbc847bc98eb81b8b6 Mon Sep 17 00:00:00 2001 From: andrewpthompson Date: Mon, 17 Dec 2018 12:07:24 +1030 Subject: [PATCH] Fix e-notice only variables should be passed by reference --- CRM/Core/Form/Task.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Form/Task.php b/CRM/Core/Form/Task.php index 7eea0555c5..607e8fc584 100644 --- a/CRM/Core/Form/Task.php +++ b/CRM/Core/Form/Task.php @@ -177,7 +177,7 @@ abstract class CRM_Core_Form_Task extends CRM_Core_Form { * For example, for cases we need to override this function as the table name is civicrm_case_contact */ public function setContactIDs() { - $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_entityIds, + $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_entityIds, $this::$tableName ); } -- 2.25.1