X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Findex.php;h=a24d7d7b5cc35e15df31c3a2b22a00a5bd3bae6a;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hp=c9be645bdb3d19f79a110269340607cd62dee40a;hpb=8cd3d68a23aa285f2fe149698a46cf8b4e3ac0ca;p=mailer.git diff --git a/inc/modules/index.php b/inc/modules/index.php index c9be645bdb..a24d7d7b5c 100644 --- a/inc/modules/index.php +++ b/inc/modules/index.php @@ -14,12 +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 * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 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 * @@ -39,14 +37,14 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isExtensionInstalled('sql_patches')) { // Redirect to admin area redirectToUrl('admin.php'); } // Generate a tableset for the menu title and content -loadTemplate('guest_header', false, array('date_time' => generateDateTime(time(), 1))); +loadTemplate('guest_header', FALSE, array('date_time' => generateDateTime(time(), 1))); // Add code-message here handleCodeMessage(); @@ -55,7 +53,7 @@ handleCodeMessage(); loadTemplate('guest_menu_td'); // Add the guest's menu here... -if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) { +if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches', TRUE))) { // Show only when guest menu is active addMenu('guest', getAction(), getWhat()); } // END - if @@ -64,10 +62,10 @@ if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true) loadTemplate('guest_menu_content'); // Disable block-mode by default -enableBlockMode(false); +enableBlockMode(FALSE); // Construct FQFN -$inc = sprintf("inc/modules/guest/action-%s.php", getAction()); +$inc = sprintf('inc/modules/guest/action-%s.php', getAction()); // Is the file there? if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) { @@ -78,15 +76,15 @@ if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWha redirectToUrl('modules.php?module=index'); } -if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches'))) { +if ((isGuestMenuEnabled()) || (!isExtensionActive('sql_patches'))) { // Right side of content (hint: a good place for 120x600 skyscraper banner!) loadTemplate('guest_content_footer'); // Some advertising stuff? loadTemplate('guest_advert2'); - outputHtml(" -"); + outputHtml(' +'); // Goto TOP template loadTemplate('guest_goto_top');