From: eileenmcnaugton Date: Mon, 7 Sep 2015 11:36:17 +0000 (+1200) Subject: fix pass-by-reference X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=05b131027cff3f41acd36566cb973d99e301c295;p=civicrm-core.git fix pass-by-reference --- diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index 967325cfac..863ea6fafa 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -2802,7 +2802,7 @@ class CRM_Contact_BAO_Query { } $statii = array(); - $gcsValues = &$this->getWhereValues('group_contact_status', $grouping); + $gcsValues = $this->getWhereValues('group_contact_status', $grouping); if ($gcsValues && is_array($gcsValues[2]) ) {