X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=f0683ecff1c5a97b3276f847a8954d9130821d8c;hb=be55b4c18a1a4834276b84a27b8ed964d6615f37;hp=486b6321d53307e470f689040466f73118157cba;hpb=9afd6ec5878544a7982c50ed9c0dd7de37606d5b;p=mailer.git diff --git a/index.php b/index.php index 486b6321d5..f0683ecff1 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')) { // 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); + 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] ?>