]> git.mxchange.org Git - mailer.git/blobdiff - index.php
Bug fixed :(
[mailer.git] / index.php
index 3e3caeed41abf38a0b3796fc370820fdff53e902..7b7d2f15f48755f2c78892a96967301823f1814f 100644 (file)
--- a/index.php
+++ b/index.php
  ************************************************************************/
 
 // XDEBUG call
-/* DEBUG: */ xdebug_start_trace();
+//* DEBUG: */ xdebug_start_trace();
 
 // Load security stuff here
 require('inc/libs/security_functions.php');
 
 // Init start time
-$GLOBALS['__start_time'] = microtime(true);
+$GLOBALS['__start_time'] = microtime(TRUE);
 
 // Set module/what and output mode
 $GLOBALS['__module']      = 'index';
@@ -67,7 +67,7 @@ if ((isExtensionInstalledAndNewer('sql_patches', '0.8.3')) && (isDisplayHomeInIn
 //////////////////////////////////////////////////
 
 // Check for cookies
-if ((isSessionVariableSet('visited')) || (getConfig('index_delay') > -1)) {
+if ((isSessionVariableSet('visited')) || (getIndexDelay() > -1)) {
        // Set content type
        setContentType('text/html');
 
@@ -87,13 +87,13 @@ 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['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)