From 2e6d4edfdda27444a5e934bd199664582137f2a6 Mon Sep 17 00:00:00 2001 From: balu Date: Sat, 23 Jun 2012 18:32:55 +0200 Subject: [PATCH] Changed redirect to include to be compatible with webservers that redirect everything to index.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 5e037e2..af83b5b 100644 --- a/index.php +++ b/index.php @@ -39,7 +39,7 @@ # ***** END LICENSE BLOCK ***** if ( ! file_exists("settings.php") && file_exists("setup.php") ) { - header( 'Location: setup.php' ); + require_once "setup.php"; exit; } else if ( ! file_exists("settings.php") ) {