X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-login.php;h=dca4bbdcd4b190298345365a2d5715aa100cbf34;hp=3cad847ee16e55f3d1f926961c2b1536abae077b;hb=20741b93fd58620af677a7f1039ffd16ea6ec689;hpb=c6017cf76200e2a5e68bd1984fa2d31f0e3be9d8 diff --git a/inc/modules/guest/what-login.php b/inc/modules/guest/what-login.php index 3cad847ee1..dca4bbdcd4 100644 --- a/inc/modules/guest/what-login.php +++ b/inc/modules/guest/what-login.php @@ -18,7 +18,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -60,55 +60,55 @@ $add = ''; if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) { // Maybe, then continue with it $userid = getMemberId(); -} elseif ((isPostRequestParameterSet('id')) && (isPostRequestParameterSet('password')) && (isFormSent())) { +} elseif ((isPostRequestElementSet('id')) && (isPostRequestElementSet('password')) && (isFormSent())) { // Set userid and crypt password when login data was submitted - if (isNicknameUsed(postRequestParameter('id'))) { + if (isNicknameUsed(postRequestElement('id'))) { // Nickname entered - $userid = SQL_ESCAPE(postRequestParameter('id')); + $userid = SQL_ESCAPE(postRequestElement('id')); } else { // Direct userid entered - $userid = bigintval(postRequestParameter('id')); + $userid = bigintval(postRequestElement('id')); } -} elseif (isPostRequestParameterSet('new_pass')) { +} elseif (isPostRequestElementSet('new_pass')) { // New password requested - $userid = '0'; - if (isPostRequestParameterSet('email')) { + $userid = NULL; + if (isPostRequestElementSet('email')) { // Email is set - $userid = SQL_ESCAPE(postRequestParameter('email')); - } elseif (isPostRequestParameterSet('id')) { + $userid = SQL_ESCAPE(postRequestElement('email')); + } elseif (isPostRequestElementSet('id')) { // Do we have nickname or userid? - if (isNicknameUsed(postRequestParameter('id'))) { + if (isNicknameUsed(postRequestElement('id'))) { // Nickname entered - $userid = SQL_ESCAPE(postRequestParameter('id')); + $userid = SQL_ESCAPE(postRequestElement('id')); } else { // Direct userid entered - $userid = bigintval(postRequestParameter('id')); + $userid = bigintval(postRequestElement('id')); } } // END - if } else { // Not logged in - $userid = '0'; + $userid = NULL; $hash = ''; } if (isMember()) { // Login immidiately... $url = 'modules.php?module=login'; -} elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestParameter('id') . '')) { +} elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestElement('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(postRequestParameter('id'), postRequestParameter('password')); -} elseif ((isPostRequestParameterSet('new_pass')) && (isset($userid))) { + $url = doUserLogin(postRequestElement('id'), postRequestElement('password')); +} elseif ((isPostRequestElementSet('new_pass')) && (isset($userid))) { // Try the userid/email lookup (see inc/libs/user_functions.php) - $errorCode = doNewUserPassword(postRequestParameter('email'), $userid); + $errorCode = doNewUserPassword(postRequestElement('email'), $userid); } // Login problems? -if (isGetRequestParameterSet('login')) { +if (isGetRequestElementSet('login')) { // Use code from URL - $errorCode = getRequestParameter('login'); + $errorCode = getRequestElement('login'); } // END - if // No problems, no output by detault