diff options
Diffstat (limited to 'engine/start.php')
-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;
}
|