fixing a misuse of quoteAndJoin.

This commit is contained in:
Matthew Wilson 2005-12-07 14:41:39 +00:00
parent f76da3335a
commit 0eec19a4d1

View file

@ -328,7 +328,7 @@ sub getUsersInGroup {
$clause .= " OR (groupId = ".quote($groupId)." AND expireDate > ".time().") ";
}
} else {
$clause .= " OR groupId IN (".quoteAndJoin(',',@$groups).")";
$clause .= " OR groupId IN (".quoteAndJoin($groups).")";
}
}
}