Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
-Subproject commit 1290d4101fe07192886e205bf8c645219d94658e
+Subproject commit 6e4c4ead2d8c7e55e9fc9c925130b8425b4ec585
private static function buildAccountQuery()
{
$args = func_get_args();
- $joinsAndWhere = XDB::_prepare($args);
+ $joinsAndWhere = XDB::prepare($args);
return array('SELECT DISTINCT a.uid
FROM accounts AS a
' . $joinsAndWhere,
private static function buildProfileQuery()
{
$args = func_get_args();
- $joinsAndWhere = XDB::_prepare($args);
+ $joinsAndWhere = XDB::prepare($args);
return array('SELECT DISTINCT a.uid
FROM accounts AS a
INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET(\'owner\', perms))