-- CRM-12348 Minor Fix
authorRavish Nair <ravish.nair@webaccess.co.in>
Mon, 15 Apr 2013 09:43:16 +0000 (15:13 +0530)
committerRavish Nair <ravish.nair@webaccess.co.in>
Mon, 15 Apr 2013 09:43:16 +0000 (15:13 +0530)
CRM/Contact/BAO/GroupContactCache.php

index 941fa3a1fc82c620c773bbdd5fdf3ad5a8628be8..5d060e56550b8e233b79ba8670f008b72ee370be 100644 (file)
@@ -78,7 +78,7 @@ class CRM_Contact_BAO_GroupContactCache extends CRM_Contact_DAO_GroupContactCach
       // note escapeString is a must here and we can't send the imploded value as second arguement to
       // the executeQuery(), since that would put single quote around the string and such a string
       // of comma separated integers would not work.
-      $groupIDString = CRM_Core_DAO::escapeString(implode(', ', $groupID));
+      $groupIDString = CRM_Core_DAO::escapeString(implode(', ', $groupIDs));
 
       $groupIDClause = "AND (g.id IN ( {$groupIDString} ))";
     }