X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Flogin.php;h=6e71c9176a07bfedbe98493bd4197c0e0f2e6ef3;hb=c8baf7e02feebf07460dc85da2ffa1c58b1f9caf;hp=f06beeb852a5b6d76ce1b8c40c312ecbbe752ec7;hpb=f5ebd83b36f343022977241bd9b570051ece4b0f;p=mailer.git diff --git a/inc/modules/login.php b/inc/modules/login.php index f06beeb852..6e71c9176a 100644 --- a/inc/modules/login.php +++ b/inc/modules/login.php @@ -14,11 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * 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 * @@ -40,9 +39,8 @@ if (!defined('__SECURITY')) { die(); } elseif (!isMember()) { - $URL = 'modules.php?module=index'; - if (checkModulePermissions('login') == 'mem_only') $URL .= '&code=' . getCode('MODULE_MEM_ONLY') . '&mod=' . getModule(); - redirectToUrl($URL); + // Redirect to login form with displayed error code + redirectToUrl('modules.php?module=index&what=login&code=' . getCode('MODULE_MEMBER_ONLY') . '&mod=' . getModule()); } // END - if // Disable block mode by default @@ -59,7 +57,9 @@ loadTemplate('member_menu_start'); // Adding the main content module here if (!isActionSet()) { - if (!isWhatSet()) setWhat('welcome'); + if (!isWhatSet()) { + setWhat('welcome'); + } // END - if } else { $action = getAction(); } @@ -73,8 +73,8 @@ if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true enableBlockMode(false); // Menu -> content -outputHtml(" - "); +outputHtml(' + '); $inc = sprintf("inc/modules/member/action-%s.php", $action); if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) { @@ -91,10 +91,10 @@ if ((getConfig('member_menu') == 'Y') || (!isExtensionActive('sql_patches', true // Some advertising stuff? loadTemplate('member_advert'); -} +} // END - if -outputHtml(" -"); +outputHtml(' +'); // Load same template for 'Goto TOP' loadTemplate('member_goto_top'); @@ -102,5 +102,5 @@ loadTemplate('member_goto_top'); // Footer template (Thanx to Mr. Glaus!) loadTemplate('member_footer'); -// +// [EOF] ?>