summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-01-14 03:38:51 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-01-14 03:38:51 +0000
commit02af2d8b7639fdc18fba3d69a4ca0a3f5c92b948 (patch)
treeab8a0ebaa6c6223f8ae3b9717d9a3942d0980b91 /index.php
parent383ec9c22cde58a15d48ddad18377d4f99348e91 (diff)
The installer. At this point, the core installs, the user module defines groups and users, but dies when attempting to create default permissions
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index e9a0a41b..f25df28e 100644
--- a/index.php
+++ b/index.php
@@ -45,9 +45,9 @@ define('MODPATH', strtr(realpath('modules') . '/', DIRECTORY_SEPARATOR, '/'));
define('THEMEPATH', strtr(realpath('themes') . '/', DIRECTORY_SEPARATOR, '/'));
define('SYSPATH', strtr(realpath('kohana') . '/', DIRECTORY_SEPARATOR, '/'));
-if (!file_exists('var')) {
+if (!file_exists('var/installed')) {
// Run the installer
- header("Location: installer/install.php");
+ header("Location: installer/index.php");
}
// Force a test run if we're in command line mode.