X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=index.php;h=0422155a3502e9d255fa459fa2b863be8b767f9b;hp=27cf6e95987094772cd10c700291cb4f32080326;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hpb=34660a21cd85270370a7aedbfc3849b7c26b316e diff --git a/index.php b/index.php index 27cf6e9598..0422155a35 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ -1)) { + // Set content type + setContentType('text/html'); + + // Header + loadPageHeader(); + // Is the index page configured for redirect pr not? if (getConfig('index_cookie') > 0) { // Set cookie and remeber it for specified time @@ -77,21 +82,21 @@ if ((isSessionVariableSet('visited')) || (getConfig('index_delay') == 0)) { loadTemplate('index'); // Shall I insert an automated forward? - if (getConfig('index_delay') > 0) { + if (getIndexDelay() > 0) { // This will be a JavaScript-redirect! - $content['delay'] = (getConfig('index_delay') * 1000 + 500); - $content['mod'] = 'index'; + $content['delay'] = (getIndexDelay() * 1000 + 500); + $content['module'] = 'index'; // Load template - loadTemplate('index_forward', false, $content); + loadTemplate('index_forward', FALSE, $content); } // END - if + + // Footer (which will call doShutdown() for us) + loadPageFooter(); } else { // Redirect to main page redirectToUrl('modules.php?module=index'); } -// Footer -loadIncludeOnce('inc/footer.php'); - // [EOF] ?>