X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=index.php;h=3e3caeed41abf38a0b3796fc370820fdff53e902;hp=4eb6036f9483682e9ec5f84fa522bf4c2ac38422;hb=63f159414369b5ea19a8ca75d8cd8033c45d8341;hpb=013448f0470ca36ab15b888928e2127e6da7d9b6 diff --git a/index.php b/index.php index 4eb6036f94..3e3caeed41 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ -1)) { + // Set content type + setContentType('text/html'); + + // Header + loadIncludeOnce('inc/header.php'); + // Is the index page configured for redirect pr not? if (getConfig('index_cookie') > 0) { // Set cookie and remeber it for specified time @@ -79,19 +89,19 @@ if ((isSessionVariableSet('visited')) || (getConfig('index_delay') == 0) || (get // Shall I insert an automated forward? if (getConfig('index_delay') > 0) { // This will be a JavaScript-redirect! - $content['delay'] = (getConfig('index_delay') * 1000 + 500); - $content['mod'] = 'index'; + $content['delay'] = (getConfig('index_delay') * 1000 + 500); + $content['module'] = 'index'; // Load template loadTemplate('index_forward', false, $content); } // END - if + + // Footer (which will call doShutdown() for us) + loadIncludeOnce('inc/footer.php'); } else { // Redirect to main page redirectToUrl('modules.php?module=index'); } -// Footer -loadIncludeOnce('inc/footer.php'); - // [EOF] ?>