diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 19:22:35 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 19:22:35 +0000 |
commit | 83ed6a85ef10757d147303b391343994d0d2faf8 (patch) | |
tree | 1ca8ba79df9bf0b79d7306f0c40a9a349c6a0ca7 /engine/lib/elgglib.php | |
parent | 3423daa3784995f25b72ebfb1e17d59f745f9354 (diff) | |
download | elgg-83ed6a85ef10757d147303b391343994d0d2faf8.tar.gz elgg-83ed6a85ef10757d147303b391343994d0d2faf8.tar.bz2 |
Refs #2463: Added elgg_normalize_url. forward() and add_menu() make use of it
git-svn-id: http://code.elgg.org/elgg/trunk@7194 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r-- | engine/lib/elgglib.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index d162768f7..282b69fce 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -79,9 +79,7 @@ function forward($location = "") { $location = $_SERVER['HTTP_REFERER']; } - if ((substr_count($location, 'http://') == 0) && (substr_count($location, 'https://') == 0)) { - $location = $CONFIG->url . $location; - } + $location = elgg_normalize_url($location); // return new forward location or false to stop the forward or empty string to exit $current_page = current_page_url(); |