Skip to content
Snippets Groups Projects
Commit 0e4e5a49 authored by Ravish Nair's avatar Ravish Nair
Browse files

-- CRM-12348 Minor Fix

parent 270903e5
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