From 9acf22511d818b70dcd4d69bef360916b1050272 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Fri, 24 Jul 2009 18:06:53 +0200 Subject: [PATCH] Fixes phones query. --- modules/profile/page.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/profile/page.inc.php b/modules/profile/page.inc.php index 1aaf2c2..508d39f 100644 --- a/modules/profile/page.inc.php +++ b/modules/profile/page.inc.php @@ -135,11 +135,11 @@ class ProfilePhones implements ProfileSetting $success = true; if (is_null($value)) { $value = array(); - $res = XDB::iterator("SELECT t.display_tel AS tel, t.tel_type AS type, t.pub, t.comment - FROM profile_phones AS t - WHERE t.uid = {?} AND t.link_type = {?} - ORDER BY t.tel_id", - $this->id, $this->link_type); + $res = XDB::iterator('SELECT display_tel AS tel, tel_type AS type, pub, comment + FROM profile_phones + WHERE uid = {?} AND link_type = {?} + ORDER BY tel_id', + $page->pid(), $this->link_type); if ($res->numRows() > 0) { $value = $res->fetchAllAssoc(); } else { -- 2.1.4