]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/chk_login.php
Old config.php is now automatically updated to new config-local.php format, several...
[mailer.git] / inc / modules / chk_login.php
index 64e2f26ce1dfa1ace676eb59ba84bd33fdcd2fe4..bba4b8c3e410951b366493dec175915ab38103e1 100644 (file)
@@ -56,7 +56,7 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
 
        // Get theme from profile
        $result = SQL_QUERY_ESC("SELECT curr_theme".$add." FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-               array(getUserId()), __FILE__, __LINE__);
+       array(getUserId()), __FILE__, __LINE__);
 
        // Load data
        $data = SQL_FETCHARRAY($result);
@@ -74,7 +74,7 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
 SET login_failures=0, last_failure='0000-00-00 00:00:00'
 WHERE userid=%s
 LIMIT 1",
-                       array(getUserId()), __FILE__, __LINE__);
+               array(getUserId()), __FILE__, __LINE__);
 
                // Store it in session
                setSession('mxchange_member_failures', $data['login_failures']);
@@ -89,10 +89,10 @@ LIMIT 1",
 SET last_login=UNIX_TIMESTAMP()
 WHERE userid=%s AND last_login < (UNIX_TIMESTAMP() - %s)
 LIMIT 1",
-                       array(
-                               getUserId(),
-                               getConfig('login_timeout')
-                       ), __FILE__, __LINE__
+               array(
+               getUserId(),
+               getConfig('login_timeout')
+               ), __FILE__, __LINE__
                );
                if (SQL_AFFECTEDROWS() == 1) $bonus = true;
        } // END - if