]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/chk_login.php
Fixes for missing user data in referal list
[mailer.git] / inc / modules / chk_login.php
index 526da23c4d86f75eefee601d38d57f1e67494717..bf3ac6071379f57c82e2a86268428c2ce8868075 100644 (file)
@@ -49,6 +49,7 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
        if (isExtensionActive('theme')) {
                // Login failures are supported since 0.4.7
                // Do we have 0.4.7 of sql_patches or later?
+               // @TODO Rewrite this into a filter
                $add = '';
                if (getExtensionVersion('sql_patches') >= '0.6.1') {
                        // Load them here
@@ -71,9 +72,13 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
                // Remmeber login failures if available
                if (getExtensionVersion('sql_patches') >= '0.6.1') {
                        // Reset login failures
-                       SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
-SET `login_failures`=0, `last_failure`='0000-00-00 00:00:00'
-WHERE `userid`=%s
+                       SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+SET
+       `login_failures`=0,
+       `last_failure`='0000-00-00 00:00:00'
+WHERE
+       `userid`=%s
 LIMIT 1",
                                array(getUserId()), __FILE__, __LINE__);
 
@@ -87,14 +92,18 @@ LIMIT 1",
        $bonus = false;
        if ((getExtensionVersion('sql_patches') >= '0.2.8') && (getExtensionVersion('bonus') >= '0.2.1') && (getConfig('bonus_login_yn') == 'Y')) {
                // Update last login if far enougth away
-               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
-SET `last_login`=UNIX_TIMESTAMP()
-WHERE `userid`=%s AND `last_login` < (UNIX_TIMESTAMP() - %s)
+               SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+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