X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=index.php;h=ee98e09d63732c73af78cb792fcc24848a3243d1;hp=040678bcea2b5706a19531dc6489f8625a10cba9;hb=8862a2901206c02479261c49de78609ffb2ce9c2;hpb=60cf1781cd7afe5f80db3587d427a72409befea6 diff --git a/index.php b/index.php index 040678bcea..ee98e09d63 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ -1)) { +if ((isSessionVariableSet('visited')) || (getIndexDelay() > -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 @@ -77,21 +87,21 @@ if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -1)) { 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) + loadIncludeOnce('inc/footer.php'); } else { // Redirect to main page redirectToUrl('modules.php?module=index'); } -// Footer -loadIncludeOnce('inc/footer.php'); - // [EOF] ?>