X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fchk_login.php;h=87d743e3f196b2526b81d0507f3389d62056e090;hb=3c0c6ad28a250c08b3fe8b166c589d0d49441ad3;hp=a2330df0c28f6f89a287bf053520c3303e315d95;hpb=885637e9f61f315ba051500061ec193ebc937f7b;p=mailer.git diff --git a/inc/modules/chk_login.php b/inc/modules/chk_login.php index a2330df0c2..87d743e3f1 100644 --- a/inc/modules/chk_login.php +++ b/inc/modules/chk_login.php @@ -1,7 +1,7 @@ {--VALIDATING_LOGIN--}"; -if (isUserIdSet() && (isSessionVariableSet('u_hash'))) { +// Is the member id and u_hash set? +if (isMemberIdSet() && (isSessionVariableSet('u_hash'))) { // Is 'theme' installed and activated? - if (EXT_IS_ACTIVE('theme')) { - // 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') { - // Load them here - $add = ", `login_failures`, UNIX_TIMESTAMP(`last_failure`) AS last_failure"; - } // END - if - + if (isExtensionActive('theme')) { // 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__); + if (!fetchUserData(getMemberId())) { + // Userid is not valid + debug_report_bug('User id '.getMemberId() . ' is invalid.'); + } // END - if // Load data - $data = SQL_FETCHARRAY($result); - - // Free result - SQL_FREERESULT($result); + $data = getUserDataArray(); // Change to new theme - setSession('mxchange_theme', $data['curr_theme']); + setTheme($data['curr_theme']); // Remmeber login failures if available - if (GET_EXT_VERSION('sql_patches') >= '0.6.1') { + 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__); + array(getMemberId()), __FILE__, __LINE__); // Store it in session setSession('mxchange_member_failures', $data['login_failures']); @@ -86,39 +81,43 @@ 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 ((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( + getMemberId(), + getConfig('login_timeout') + ), __FILE__, __LINE__ ); if (SQL_AFFECTEDROWS() == 1) $bonus = true; } // END - if - if (($bonus === true) && (REQUEST_GET('mode') == 'bonus') && (EXT_IS_ACTIVE('bonus'))) { + if (($bonus === true) && (getRequestElement('mode') == 'bonus') && (isExtensionActive('bonus'))) { // Output message with added points $message .= "
".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
"; - } elseif (EXT_IS_ACTIVE('bonus')) { + } elseif (isExtensionActive('bonus')) { // No login bonus added! $message .= "
{--BONUS_LOGIN_BONUS_NOT_ADDED--}
"; } // Redirect to member area - $message .= LOAD_TEMPLATE("member_login_js", true); + $message .= loadTemplate('member_login_js', true); } else { // Login failed! - $message .= LOAD_TEMPLATE("login_failed_js", true); + $message .= loadTemplate('login_failed_js', true); } // Output final message -LOAD_TEMPLATE('admin_settings_saved', false, $message); +loadTemplate('admin_settings_saved', false, $message); -// +// [EOF] ?>