diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-17 11:19:03 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-17 11:19:03 +0000 |
commit | b5e15b0382b66ba15fd212e392a46d396c015662 (patch) | |
tree | 9d13150a3b337daededf58841ef171dce1dc5802 | |
parent | 81150f406a14503ae5ff8198c153bc545c67b10c (diff) | |
download | elgg-b5e15b0382b66ba15fd212e392a46d396c015662.tar.gz elgg-b5e15b0382b66ba15fd212e392a46d396c015662.tar.bz2 |
We need actions to work when the installation hasn't been settled. Refs #3
git-svn-id: https://code.elgg.org/elgg/trunk@946 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/start.php b/engine/start.php index a6c7afad3..4682e35b2 100644 --- a/engine/start.php +++ b/engine/start.php @@ -128,7 +128,7 @@ // Trigger events
trigger_elgg_event('boot', 'system');
// Forward if we haven't been installed
- if ((!is_installed() || !is_db_installed()) && !substr_count($_SERVER["PHP_SELF"],"install.php")) {
+ if ((!is_installed() || !is_db_installed()) && !substr_count($_SERVER["PHP_SELF"],"install.php") && !substr_count($_SERVER["PHP_SELF"],"action_handler.php")) {
header("Location: install.php");
exit;
}
|