includes/paths.php
changeset 93 95c4d91bd954
parent 80 cb7dde69c301
child 109 93ef7df77847
--- a/includes/paths.php	Tue Aug 14 20:48:29 2007 -0400
+++ b/includes/paths.php	Thu Aug 16 20:35:49 2007 -0400
@@ -384,14 +384,13 @@
   {
     if( is_string(getConfig('main_page')) )
     {
-      header('Location: '.makeUrl(getConfig('main_page')));
-      die('If you aren\'t redirected, <a href="' . makeUrl(getConfig('main_page')) . '">click here</a>.');
+      $main_page = makeUrl(getConfig('main_page'));
     }
     else
     {
-      header('Location: '.makeUrl($this->pages[0]['urlname']));
-      die('If you aren\'t redirected, <a href="' . makeUrl($this->pages[0]['urlname']) . '">click here</a>.');
+      $main_page = makeUrl($this->pages[0]['urlname']);
     }
+    redirect($main_page, 'Redirecting...', 'Invalid request, redirecting to main page', 0);
     exit;
   }