Oops, fix vcard query to retreive user pictures.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 8 Nov 2008 11:47:22 +0000 (12:47 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 8 Nov 2008 11:47:22 +0000 (12:47 +0100)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
include/vcard.inc.php

index 844d45f..b62d09f 100644 (file)
@@ -163,7 +163,7 @@ class VCard extends PlVCard
             $res = XDB::query(
                     "SELECT  attach, attachmime
                        FROM  photo AS p
-                      WHERE  u.user_id = {?}", $login->id());
+                      WHERE  p.uid = {?}", $login->id());
             if ($res->numRows()) {
                 list($data, $type) = $res->fetchOneRow();
                 $entry->setPhoto($data, strtoupper($type));