]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/index.php
A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / index.php
index c4d19f2d72cad29bf188eec5c86dfbff3478b2ec..ff21a48c258f0de5aecf113ce561ad4cf0f04fc2 100644 (file)
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
-} elseif (!EXT_IS_ACTIVE("sql_patches")) {
-       // The extension "sql_patches" *MUST* be activated or you have lot's of problems!
+} elseif (!EXT_IS_ACTIVE('sql_patches')) {
+       // The extension 'sql_patches' *MUST* be activated or you have lot's of problems!
        LOAD_URL("admin.php");
 }
 
@@ -63,13 +63,13 @@ if (empty($GLOBALS['what'])) $GLOBALS['what'] = getConfig('index_home');
 // Adding the main content module here
 if (empty($GLOBALS['action'])) {
        // Get action value from what value
-       $GLOBALS['action'] = GET_ACTION("guest", $GLOBALS['what']);
+       $GLOBALS['action'] = GET_ACTION('guest', $GLOBALS['what']);
 } // END - if
 
 // Add the guest's menu here...
-if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
+if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) {
        // Show only when guest menu is active
-       ADD_MENU("guest", $GLOBALS['action'], $GLOBALS['what']);
+       ADD_MENU('guest', $GLOBALS['action'], $GLOBALS['what']);
 } // END - if
 
 // TDs between menu and content
@@ -82,15 +82,15 @@ $GLOBALS['block_mode'] = false;
 $INC = sprintf("inc/modules/guest/action-%s.php", $GLOBALS['action']);
 
 // Is the file there?
-if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION("guest", $GLOBALS['action'], $GLOBALS['what']))) {
+if ((INCLUDE_READABLE($INC)) && (VALIDATE_MENU_ACTION('guest', $GLOBALS['action'], $GLOBALS['what']))) {
        // Requested module is available so we load it
        LOAD_INC_ONCE($INC);
 } else {
        // Invalid module specified or not found...
-       LOAD_URL("modules.php?module=index");
+       LOAD_URL('modules.php?module=index');
 }
 
-if ((getConfig('guest_menu') == "Y") || (!EXT_IS_ACTIVE("sql_patches", true))) {
+if ((getConfig('guest_menu') == 'Y') || (!EXT_IS_ACTIVE('sql_patches', true))) {
        // Right side of content (hint: a good place for 120x600 skyscraper banner!)
        LOAD_TEMPLATE("guest_content_footer");