aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-02-14 18:13:29 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-02-14 18:13:29 +0000
commite0c5ffc792657f5fb3ff1f0774cfcd18befb8175 (patch)
treec4ea9ed5659765e374188eedbe95f452fd3ce83f /engine/lib/elgglib.php
parenta1d7078ddce6d98615019b2e32959c01a174f893 (diff)
downloadelgg-e0c5ffc792657f5fb3ff1f0774cfcd18befb8175.tar.gz
elgg-e0c5ffc792657f5fb3ff1f0774cfcd18befb8175.tar.bz2
A simple beginning to an install script
git-svn-id: https://code.elgg.org/elgg/trunk@34 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r--engine/lib/elgglib.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index 53771f896..b68258470 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -24,10 +24,14 @@
* @return nothing|false
*/
- function forward($location) {
+ function forward($location = "") {
if (!headers_sent()) {
$_SESSION['messages'] = system_messages();
+ if (substr_count($location, 'http://') == 0) {
+ global $CONFIG;
+ $location = $CONFIG->url . $location;
+ }
header("Location: {$location}");
exit;
}