diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-14 03:38:51 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-14 03:38:51 +0000 |
commit | 02af2d8b7639fdc18fba3d69a4ca0a3f5c92b948 (patch) | |
tree | ab8a0ebaa6c6223f8ae3b9717d9a3942d0980b91 /index.php | |
parent | 383ec9c22cde58a15d48ddad18377d4f99348e91 (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.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |