diff options
author | Cesar G <prototech91@gmail.com> | 2014-02-07 09:20:49 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-22 15:21:02 -0700 |
commit | 8987fc95f97e2e64915fcbe809a7e14051b8a328 (patch) | |
tree | ae808d580842ba9de70e9ce841693fe1441f5b19 /phpBB/includes/functions.php | |
parent | 3163388f63a6d0bac77ada86e2f1561f1d7f9714 (diff) | |
download | forums-8987fc95f97e2e64915fcbe809a7e14051b8a328.tar forums-8987fc95f97e2e64915fcbe809a7e14051b8a328.tar.gz forums-8987fc95f97e2e64915fcbe809a7e14051b8a328.tar.bz2 forums-8987fc95f97e2e64915fcbe809a7e14051b8a328.tar.xz forums-8987fc95f97e2e64915fcbe809a7e14051b8a328.zip |
[ticket/11508] Change separator parameter to a simple true|false $is_amp.
PHPBB3-11508
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 9c77aa935c..2062cd062c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2373,7 +2373,7 @@ function build_url($strip_vars = false) if ($strip_vars !== false) { - $redirect = $path_helper->strip_url_params($redirect, $strip_vars, '&'); + $redirect = $path_helper->strip_url_params($redirect, $strip_vars, false); } return $redirect; |