From: Artem Daniliants Date: Wed, 26 May 2010 13:02:07 +0000 (+0300) Subject: Fixed again that stupid binding issue X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=commitdiff_plain;h=62b557820f57a3ae57ec5e7e08add79172f0436e Fixed again that stupid binding issue --- 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