Update core
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Mon, 27 Sep 2010 08:37:51 +0000 (10:37 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Mon, 27 Sep 2010 08:38:20 +0000 (10:38 +0200)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
core
ut/userfiltertest.php

diff --git a/core b/core
index 1290d41..6e4c4ea 160000 (submodule)
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 1290d4101fe07192886e205bf8c645219d94658e
+Subproject commit 6e4c4ead2d8c7e55e9fc9c925130b8425b4ec585
index 8cfc514..cf21bdc 100644 (file)
@@ -35,7 +35,7 @@ class UserFilterTest extends PlTestCase
     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,
@@ -49,7 +49,7 @@ class UserFilterTest extends PlTestCase
     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))