X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=57059d512aa23cf3684acfa1e3e8580353de654a;hb=6c0abc9f643c69610fe87be0ddb1a5dab95c6d39;hp=f576059535fd9069740cd9f653b4955f5f53ef7f;hpb=6d5ba73e2eb20f5a6285d0196bb5f958fb507d76;p=mailer.git diff --git a/index.php b/index.php index f576059535..57059d512a 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ 0)) { +if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -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 +83,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); } // END - if + + // Footer + loadIncludeOnce('inc/footer.php'); } else { // Redirect to main page redirectToUrl('modules.php?module=index'); } -// Footer -loadIncludeOnce('inc/footer.php'); - // [EOF] ?>