X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fchk_login.php;h=8d46fd5d7d3f50a34748ce48d45e0009cd887dd4;hp=3dc66760420cf8085ae033e5a7c3c0ac4aa192bb;hb=a090e351c49fe021fb3064325694da03402332e0;hpb=f212df3d9d1d3c7f8632040130be9e7160980de6 diff --git a/inc/modules/chk_login.php b/inc/modules/chk_login.php index 3dc6676042..8d46fd5d7d 100644 --- a/inc/modules/chk_login.php +++ b/inc/modules/chk_login.php @@ -48,8 +48,8 @@ $message = "{--VALIDATING_LOGIN--}"; if (isUserIdSet() && (isSessionVariableSet('u_hash'))) { // Login failures are supported since 0.4.7 // Do we have 0.4.7 of sql_patches or later? - $add = ""; - if (GET_EXT_VERSION("sql_patches") >= "0.6.1") { + $add = ''; + if (GET_EXT_VERSION('sql_patches') >= '0.6.1') { // Load them here $add = ", login_failures, UNIX_TIMESTAMP(last_failure) AS last_failure"; } // END - if @@ -68,7 +68,7 @@ if (isUserIdSet() && (isSessionVariableSet('u_hash'))) { set_session('mxchange_theme', $data['curr_theme']); // Remmeber login failures if available - if (GET_EXT_VERSION("sql_patches") >= "0.6.1") { + if (GET_EXT_VERSION('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' @@ -83,7 +83,7 @@ LIMIT 1", // Bonus is not given by default ;-) $bonus = false; - if ((GET_EXT_VERSION("sql_patches") >= "0.2.8") && (GET_EXT_VERSION("bonus") >= "0.2.1") && (getConfig('bonus_login_yn') == "Y")) { + if ((GET_EXT_VERSION('sql_patches') >= '0.2.8') && (GET_EXT_VERSION('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() @@ -97,12 +97,12 @@ LIMIT 1", if (SQL_AFFECTEDROWS() == 1) $bonus = true; } // END - if - if (($bonus) && (REQUEST_GET('mode') == "bonus") && (EXT_IS_ACTIVE("bonus"))) { + 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')))."
"; - } elseif (EXT_IS_ACTIVE("bonus")) { + } elseif (EXT_IS_ACTIVE('bonus')) { // No login bonus added! $message .= "
{--BONUS_LOGIN_BONUS_NOT_ADDED--}
"; } @@ -115,7 +115,7 @@ LIMIT 1", } // Output final message -LOAD_TEMPLATE("admin_settings_saved", false, $message); +LOAD_TEMPLATE('admin_settings_saved', false, $message); // ?>