diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 13:59:49 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 13:59:49 +0000 |
commit | f20588b780a0084ae381d2b31f7098e5eb495641 (patch) | |
tree | 4c7411cc55500eec92b3a95d5f0332486e23bcb1 /actions/systemsettings | |
parent | ddca3fc89a7c1ce26e33020b10401b4eb4592194 (diff) | |
download | elgg-f20588b780a0084ae381d2b31f7098e5eb495641.tar.gz elgg-f20588b780a0084ae381d2b31f7098e5eb495641.tar.bz2 |
Corrected an issue with actions.
git-svn-id: https://code.elgg.org/elgg/trunk@623 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 67073e6f8..8a0346d74 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -30,7 +30,8 @@ system_message(elgg_echo("installation:configuration:success"));
- forward("register.php");
+ header("Location: ../../register.php");
+ exit;
}
|