From 7a5abd382a76801fdd966a9dfe39b796931691bb Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sat, 5 Jan 2013 08:00:53 +0000 Subject: [PATCH] Move the install.php from the root directory and put it into the resources directory. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 647bc5c2f9..09c22b5662 100644 --- a/index.php +++ b/index.php @@ -25,7 +25,7 @@ */ include "root.php"; if (!file_exists($_SERVER['DOCUMENT_ROOT'].PROJECT_PATH."/includes/config.php")){ - header("Location: ".PROJECT_PATH."/install.php"); + header("Location: ".PROJECT_PATH."/resources/install.php"); exit; } require_once "includes/require.php";