X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=index.php;h=52c0c200511f5e9d051050623ee1716c5c5d25b9;hp=e9a77ff4f382ba65322d713a7c9ab3a51442fe1b;hb=815ca2471c4e145975873d2b754b91f78bd7b5d7;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e diff --git a/index.php b/index.php index e9a77ff4f3..52c0c20051 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ -1)) { + // 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 +78,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 + loadIncludeOnce('inc/footer.php'); } else { // Redirect to main page redirectToUrl('modules.php?module=index'); } -// Footer -loadIncludeOnce('inc/footer.php'); - // [EOF] ?>