From b5e15b0382b66ba15fd212e392a46d396c015662 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 17 Jun 2008 11:19:03 +0000 Subject: 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 --- engine/start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3