X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fchk_login.php;h=ad4bc4c97d0c055e5bb8142901e289cb0a9d1576;hp=88bc2e0bb69cd0dbd78320e508e7ffcefe1d0aa6;hb=7cb246c51e8634735aaf24e546bcbc46c5ce3833;hpb=41e2891fb998d13b22b8d7984358f258cc85267d diff --git a/inc/modules/chk_login.php b/inc/modules/chk_login.php index 88bc2e0bb6..ad4bc4c97d 100644 --- a/inc/modules/chk_login.php +++ b/inc/modules/chk_login.php @@ -1,7 +1,7 @@ ".VALIDATING_LOGIN."
"); - -if (!empty($GLOBALS['userid']) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime'))) { - // Login failtures 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.4.7") { - // Load them here - $ADD = ", login_failtures, UNIX_TIMESTAMP(last_failture) AS last_failture"; - } // END - if - - // Get theme from profile - $result = SQL_QUERY_ESC("SELECT curr_theme".$ADD." FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); - - // Load data - $data = SQL_FETCHARRAY($result); - - // Free result - SQL_FREERESULT($result); - - // Change to new theme - set_session("mxchange_theme", $data['curr_theme']); - - // Remmeber login failtures if available - if (GET_EXT_VERSION("sql_patches") >= "0.4.7") { - // Store it in session - set_session('mxchange_member_failtures', $data['login_failtures']); - set_session('mxchange_member_last_fail', $data['last_failture']); - } // END - if - - // Bonus is not given by default ;-) - $bonus = false; - if ((GET_EXT_VERSION("sql_patches") >= "0.2.8") && (GET_EXT_VERSION("bonus") >= "0.2.1") && ($_CONFIG['bonus_login_yn'] == "N") && ($_CONFIG['bonus_login_yn'] == "Y")) { +if (!defined('__SECURITY')) { + die(); +} // END - if - // Update last login if far enougth away - $result = 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( - $GLOBALS['userid'], - $_CONFIG['login_timeout'] - ), __FILE__, __LINE__ - ); - if (SQL_AFFECTEDROWS() == 1) $bonus = true; - } // END - if +// Initial message part +$GLOBALS['message'] = '{--VALIDATING_LOGIN--}'; - if (($bonus) && ($_GET['mode'] == "bonus") && (EXT_IS_ACTIVE("bonus"))) { - // Output message with added points - OUTPUT_HTML(" - ".BONUS_LOGIN_BONUS_ADDED_1." - ".TRANSLATE_COMMA($_CONFIG['login_bonus'])." ".POINTS." - ".BONUS_LOGIN_BONUS_ADDED_2." -"); - } elseif (EXT_IS_ACTIVE("bonus")) { - // No login bonus added! - OUTPUT_HTML("".BONUS_LOGIN_BONUS_NOT_ADDED.""); - } +// Is the member id and u_hash set? +if (isMember()) { + // Run filter chain here + runFilterChain('member_login_check'); // Redirect to member area - LOAD_TEMPLATE("member_login_js"); + $GLOBALS['message'] .= loadTemplate('member_login_js', true); } else { // Login failed! - LOAD_TEMPLATE("login_failed_js"); + $GLOBALS['message'] .= loadTemplate('login_failed_js', true); } -// Close table -CLOSE_TABLE(); +// Output final message +loadTemplate('admin_settings_saved', false, $GLOBALS['message']); -// +// [EOF] ?>