From f432193e0789f0182741d1b4a38a8c4cd86dfba4 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Thu, 6 Nov 2014 13:45:09 +0100 Subject: [PATCH] [ticket/13280] Remove unneeded str_replace in build_url() PHPBB3-13280 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index dc195cebb6..1a3560dbb1 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2397,7 +2397,7 @@ function build_url($strip_vars = false) global $config, $user, $phpbb_path_helper; $php_ext = $phpbb_path_helper->get_php_ext(); - $page = str_replace('&', '&', $user->page['page']); + $page = $user->page['page']; // We need to be cautious here. // On some situations, the redirect path is an absolute URL, sometimes a relative path