From: Matteo Nastasi (mop) <nastasi@alternativeoutput.it>
Date: Wed, 28 May 2014 16:00:37 +0000 (+0200)
Subject: removed check about user disabled
X-Git-Tag: v4.14.3~15
X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=12aa3028366c25d641bd6f89a033d8b2c1ebb3f0;p=brisk.git

removed check about user disabled
---

diff --git a/web/Obj/dbase_pgsql.phh b/web/Obj/dbase_pgsql.phh
index 18c60b2..2b4467c 100644
--- a/web/Obj/dbase_pgsql.phh
+++ b/web/Obj/dbase_pgsql.phh
@@ -133,8 +133,8 @@ class BriskDB
         /* check the existence of the nick in the BriskDB */
         log_main("login_exists: ".$login);
 
-        $user_sql = sprintf("SELECT * FROM %susers WHERE login = lower('%s') AND (type & CAST (X'%08x' as integer)) = 0;",
-                            $G_dbpfx, escsql($login), USER_FLAG_TY_DISABLE);
+        $user_sql = sprintf("SELECT * FROM %susers WHERE login = lower('%s')",
+                            $G_dbpfx, escsql($login));
         if (($user_pg = $this->query($user_sql)) != FALSE)
             if (pg_numrows($user_pg) == 1)
                 return TRUE;