Menu

Commit [r14]  Maximize  Restore  History

Fixed an issue with the setup check/redirect. It was calling the headerFunction which is part of the library.php file. since this was not included above the settings.php check it was throwing a PHP error and not redirecting accordingly. Replaced the headerFunction call with the native header function.

mindblender 2010-09-15

changed /index.php
/index.php Diff Switch to side-by-side view
--- a/index.php
+++ b/index.php
@@ -11,7 +11,7 @@
  */
 /* Do Setup Check */
 if (!file_exists("includes/settings.php")) {
-    headerFunction("location: installation/setup.php");
+    header('Location: installation/setup.php');
     exit;
 }
 /** END **/
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.