X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fchk_login.php;h=bba4b8c3e410951b366493dec175915ab38103e1;hb=2ec9007220186d54f84846871ed1f7638c29baf7;hp=33e652776f3221006443bb84d0a6c8214427bccb;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/modules/chk_login.php b/inc/modules/chk_login.php index 33e652776f..bba4b8c3e4 100644 --- a/inc/modules/chk_login.php +++ b/inc/modules/chk_login.php @@ -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 .= "
- ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), TRANSLATE_COMMA(getConfig('login_bonus')))." + ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
"; } elseif (EXT_IS_ACTIVE('bonus')) { // No login bonus added!