Fixed SQL binding bug
authorArtem Daniliants <artem@daniliants.com>
Thu, 27 May 2010 07:11:57 +0000 (10:11 +0300)
committerArtem Daniliants <artem@daniliants.com>
Thu, 27 May 2010 07:11:57 +0000 (10:11 +0300)
Server/application/models/user.php

index 30723bc..fec78a2 100644 (file)
@@ -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