X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=4eb0414c5d21ef465b3852fb419fbeaa8aa8c7c3;hb=f1007ef078225bb6219a3cdac53fe7d24c904c00;hp=f576059535fd9069740cd9f653b4955f5f53ef7f;hpb=bc1206de88938e79c0141872c175b9d64f5e4e93;p=mailer.git diff --git a/index.php b/index.php index f576059535..4eb0414c5d 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ 0)) { +if ((isSessionVariableSet('visited')) || (getIndexDelay() > -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] ?>