]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/index.php
Temporary configuration 'RAND_NUMBER' is now 'cached' in session variable, possibly...
[mailer.git] / inc / modules / index.php
index da924d85656957c9515b342c6df06bf7f47a7c5a..d0a35833c5c9a3413751cadca88185ef9fa55c44 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * 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 - 2012 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 *
 
 // 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();
@@ -53,7 +53,7 @@ handleCodeMessage();
 loadTemplate('guest_menu_td');
 
 // Add the guest's menu here...
-if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', true))) {
+if ((getConfig('guest_menu') == 'Y') || (!isExtensionActive('sql_patches', TRUE))) {
        // Show only when guest menu is active
        addMenu('guest', getAction(), getWhat());
 } // END - if
@@ -62,7 +62,7 @@ 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());