From: Eileen McNaughton Date: Sat, 24 May 2014 02:19:36 +0000 (+1200) Subject: change var name to camel case X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2ef90ca78778b8f0c19a35e296b8e0ed52f1ee2f;p=civicrm-core.git change var name to camel case --- diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index b8c32e54da..aca2545a17 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -1337,12 +1337,12 @@ class CRM_Contact_BAO_Query { $having = ''; if (!empty($this->_having)) { - foreach ($this->_having as $havingsets) { - foreach ($havingsets as $havingset) { - $havingvalue[] = $havingset; + foreach ($this->_having as $havingSets) { + foreach ($havingSets as $havingSet) { + $havingValue[] = $havingSet; } } - $having = ' HAVING ' . implode(' AND ', $havingvalue); + $having = ' HAVING ' . implode(' AND ', $havingValue); } // if we are doing a transform, do it here