X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Flogin.php;h=604139d9cccfd7593319ff51a80dcf0f92877fe1;hb=9d527cf8f2d95f7f58a42cb159f0ffc732f49d39;hp=50d7d98f42d0fb969d0e2f454b34ea260e106d04;hpb=397eb5dee2611cfaa1ff494d73e6785b88109cd6;p=mailer.git diff --git a/inc/modules/login.php b/inc/modules/login.php index 50d7d98f42..604139d9cc 100644 --- a/inc/modules/login.php +++ b/inc/modules/login.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Login-Bereich fuer Mitglieder * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -53,7 +58,7 @@ if ($status != "CONFIRMED") { define('__MEMBER_ADVERT', LOAD_TEMPLATE("member_banner", true)); // Disable block mode by default -$BLOCK_MODE = false; +$GLOBALS['block_mode'] = false; // Generate a tableset for the menu title and content LOAD_TEMPLATE("member_header"); @@ -78,10 +83,10 @@ if ((getConfig('member_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) OUTPUT_HTML(" "); -$INC_ACTION = sprintf("inc/modules/member/action-%s.php", $act); -if ((FILE_READABLE($INC_ACTION)) && (VALIDATE_MENU_ACTION("member", GET_ACTION("member", $GLOBALS['what']), $GLOBALS['what']))) { +$INC = sprintf("inc/modules/member/action-%s.php", $act); +if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("member", $GLOBALS['action'], $GLOBALS['what']))) { // Requested module is available so we load it - LOAD_INC($INC_ACTION); + LOAD_INC($INC); } else { // Invalid module specified or not found... LOAD_URL("modules.php?module=login");