]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/chk_login.php
Code cleanup:
[mailer.git] / inc / modules / chk_login.php
index 33e652776f3221006443bb84d0a6c8214427bccb..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);
@@ -65,7 +65,7 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
        SQL_FREERESULT($result);
 
        // Change to new theme
-       set_session('mxchange_theme', $data['curr_theme']);
+       setSession('mxchange_theme', $data['curr_theme']);
 
        // Remmeber login failures if available
        if (GET_EXT_VERSION('sql_patches') >= '0.6.1') {
@@ -74,11 +74,11 @@ 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
-               set_session('mxchange_member_failures', $data['login_failures']);
-               set_session('mxchange_member_last_fail', $data['last_failure']);
+               setSession('mxchange_member_failures', $data['login_failures']);
+               setSession('mxchange_member_last_fail', $data['last_failure']);
        } // END - if
 
        // Bonus is not given by default ;-)
@@ -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
@@ -100,7 +100,7 @@ LIMIT 1",
        if (($bonus) && (REQUEST_GET('mode') == 'bonus') && (EXT_IS_ACTIVE('bonus'))) {
                // Output message with added points
                $message .= "<div class=\"tiny\">
-  ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), TRANSLATE_COMMA(getConfig('login_bonus')))."
+  ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
 </div>";
        } elseif (EXT_IS_ACTIVE('bonus')) {
                // No login bonus added!