X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-login.php;h=f2c6938e8784ff7a0e76f501174082d67fb3c797;hb=cd85456cecbbe338df3b6bd2ca556f93f5a424ed;hp=8fca859c58464bcb5f41d29c7c57a68ce4d8053f;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/modules/guest/what-login.php b/inc/modules/guest/what-login.php index 8fca859c58..f2c6938e87 100644 --- a/inc/modules/guest/what-login.php +++ b/inc/modules/guest/what-login.php @@ -19,6 +19,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -54,26 +55,35 @@ if ((!isExtensionActive('user')) && (!isAdmin())) { $errorCode = '0'; $userid = false; $hash = ''; -$URL = ''; +$url = ''; $add = ''; // Already logged in? if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) { // Maybe, then continue with it $userid = getMemberId(); -} elseif ((isPostRequestElementSet('id')) && (isPostRequestElementSet('password')) && (isFormSent())) { +} elseif ((isPostRequestParameterSet('id')) && (isPostRequestParameterSet('password')) && (isFormSent())) { // Set userid and crypt password when login data was submitted - if (isNicknameUsed(postRequestElement('id'))) { + if (isExtensionActive('nickname')) { // Nickname entered - $userid = SQL_ESCAPE(postRequestElement('id')); + $userid = SQL_ESCAPE(postRequestParameter('id')); } else { // Direct userid entered - $userid = bigintval(postRequestElement('id')); + $userid = bigintval(postRequestParameter('id')); } -} elseif (isPostRequestElementSet('new_pass')) { +} elseif (isPostRequestParameterSet('new_pass')) { // New password requested $userid = '0'; - if (isPostRequestElementSet('id')) $userid = bigintval(postRequestElement('id')); + if (isPostRequestParameterSet('id')) { + // Do we have nickname or userid? + if ((isExtensionActive('nickname')) && (isNicknameUsed(postRequestParameter('id')))) { + // Nickname entered + $userid = SQL_ESCAPE(postRequestParameter('id')); + } else { + // Direct userid entered + $userid = bigintval(postRequestParameter('id')); + } + } // END - if } else { // Not logged in $userid = '0'; $hash = ''; @@ -81,22 +91,22 @@ if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) { if (isMember()) { // Login immidiately... - $URL = 'modules.php?module=login'; -} elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestElement('id') . '')) { + $url = 'modules.php?module=login'; +} elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestParameter('id') . '')) { // Invalid input (no nickname extension installed but nickname entered) $errorCode = getCode('EXTENSION_PROBLEM'); } elseif (isFormSent()) { // Try the login (see inc/libs/user_functions.php) - $URL = doUserLogin(postRequestElement('id'), postRequestElement('password')); -} elseif ((isPostRequestElementSet('new_pass')) && (isset($userid))) { + $url = doUserLogin(postRequestParameter('id'), postRequestParameter('password')); +} elseif ((isPostRequestParameterSet('new_pass')) && (isset($userid))) { // Try the userid/email lookup (see inc/libs/user_functions.php) - $errorCode = doNewUserPassword(postRequestElement('email'), $userid); + $errorCode = doNewUserPassword(postRequestParameter('email'), $userid); } // Login problems? -if (isGetRequestElementSet('login')) { +if (isGetRequestParameterSet('login')) { // Use code from URL - $errorCode = getRequestElement('login'); + $errorCode = getRequestParameter('login'); } // END - if // No problems, no output by detault @@ -104,21 +114,18 @@ $content['message'] = ''; // Login problems? if (!empty($errorCode)) { - // @TODO Move this HTML code into a template - $message = " -   - - "; - - // Convert the code to message - $message .= getMessageFromErrorCode($errorCode); + // Do we have a userid set? + if (isSessionVariableSet('current_userid')) { + // Then prefetch data for this account + fetchUserData(getSession('current_userid')); + } // END - if - // Continue with HTML - $message .= " + // @TODO Move this HTML code into a template + $content['message'] = ' + + ' . getMessageFromErrorCode($errorCode) . ' -   -\n"; - $content['message'] = $message; +'; } // END - if // Display login form with resend-password form @@ -129,14 +136,14 @@ if (isExtensionActive('nickname')) { } // Was an URL constructed? -if (!empty($URL)) { +if (!empty($url)) { // URL was constructed - if (getTotalFatalErrors() > 0) { + if (ifFatalErrorsDetected()) { // Handle fatal errors runFilterChain('handle_fatal_errors'); } else { // Load URL - redirectToUrl($URL); + redirectToUrl($url); } } // END - if