X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-members.php;h=f92d4aa8bac746cb8fee5d8ad138e341720d54bf;hb=99966a712b3b3d8b521524762e153353d1d20bd4;hp=1b51d4843c2e7f6b1d6a89f55a82eefcb2327b6a;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689;p=mailer.git diff --git a/inc/modules/guest/action-members.php b/inc/modules/guest/action-members.php index 1b51d4843c..f92d4aa8ba 100644 --- a/inc/modules/guest/action-members.php +++ b/inc/modules/guest/action-members.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Menues fuer Mitglieder (Login, Anmeldung, ...) * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,7 +32,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (isBlockModeEnabled()) { // Block mode detected return; @@ -47,10 +42,10 @@ if (!defined('__SECURITY')) { addYouAreHereLink('guest', __FILE__); // Load the include file -$inc = sprintf("inc/modules/guest/what-%s.php", getWhat()); +$inc = sprintf('inc/modules/guest/what-%s.php', getWhat()); if (isIncludeReadable($inc)) { // Ok, we finally load the guest action module - loadInclude($inc); + loadIncludeOnce($inc); } else { addFatalMessage(__FILE__, __LINE__, '{--GUEST_WHAT_404--}'); }