Skip to content
Snippets Groups Projects
Commit cf31b053 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #431 from ravishnair/CRM-12348

-- CRM-12348 Minor Fix
parents 270903e5 0e4e5a49
No related branches found
No related tags found
No related merge requests found
......@@ -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} ))";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment