From 62b557820f57a3ae57ec5e7e08add79172f0436e Mon Sep 17 00:00:00 2001 From: Artem Daniliants Date: Wed, 26 May 2010 16:02:07 +0300 Subject: [PATCH] Fixed again that stupid binding issue --- Server/application/models/user.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/application/models/user.php b/Server/application/models/user.php index 0535789..30723bc 100644 --- a/Server/application/models/user.php +++ b/Server/application/models/user.php @@ -82,7 +82,7 @@ class User_Model extends Model { * @return bool Returns True if user exists and false otherwise */ private function user_exists($username, $email){ - if ($this->db->query("SELECT id FROM users WHERE username='?' OR email='?'", + if ($this->db->query("SELECT id FROM users WHERE username=? OR email='?'", $username, $email)->count()>0) return true; else @@ -106,7 +106,7 @@ class User_Model extends Model { * @return integer|bool User id if successful or false */ public function get_id($username){ - $result = $this->db->query("SELECT id FROM users WHERE username='?'", $username); + $result = $this->db->query("SELECT id FROM users WHERE username=?", $username); if ($result->count()>0) return $result[0]->id; else -- 1.7.9.5