From: Artem Daniliants Date: Thu, 27 May 2010 07:11:57 +0000 (+0300) Subject: Fixed SQL binding bug X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=commitdiff_plain;h=1e02071e5888f5f0a88ba39b08bb641406bf62e4 Fixed SQL binding bug --- diff --git a/Server/application/models/user.php b/Server/application/models/user.php index 30723bc..fec78a2 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