diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 14:04:46 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 14:04:46 +0000 |
commit | 7a76e090532b6023808ecca673cc0b7bd6a0355c (patch) | |
tree | 399a5416f21198608c4762fbe4edf947dd0a1355 /engine/start.php | |
parent | f20588b780a0084ae381d2b31f7098e5eb495641 (diff) | |
download | elgg-7a76e090532b6023808ecca673cc0b7bd6a0355c.tar.gz elgg-7a76e090532b6023808ecca673cc0b7bd6a0355c.tar.bz2 |
Update to start.php to fix bug on installation
git-svn-id: https://code.elgg.org/elgg/trunk@624 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/start.php')
-rw-r--r-- | engine/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/start.php b/engine/start.php index 6c85ce75c..af3f20c21 100644 --- a/engine/start.php +++ b/engine/start.php @@ -111,7 +111,8 @@ if ((!is_installed() || !is_db_installed()) && !substr_count($_SERVER["PHP_SELF"],"install.php")) {
// Autodetect some default configuration settings
set_default_config();
- forward("install.php");
+ header("Location: install.php");
+ exit;
}
// Trigger events
|