diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-11 20:31:29 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-11 20:31:29 +0000 |
commit | 1f848385fafef5105966fb3e430f44f111ac5e38 (patch) | |
tree | af9b3f6b8178f60d073e69e1df5fb96a866f7633 | |
parent | 4d5679b74952e41b5c3f04dc67b51d727fd96d34 (diff) |
Tried various combinations of url::redirect(...) or
url::redirect(url::file(...))
The only thing that works is this way.
-rw-r--r-- | core/hooks/init_gallery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hooks/init_gallery.php b/core/hooks/init_gallery.php index 56c19f04..4341b9c3 100644 --- a/core/hooks/init_gallery.php +++ b/core/hooks/init_gallery.php @@ -19,7 +19,7 @@ */ if (!file_exists(VARPATH . "database.php")) { - header("Location: ../installer"); + header("Location: installer"); exit(); } |