From 9e605b1338821b5866102c527264304e91d8240f Mon Sep 17 00:00:00 2001 From: Cesar G Date: Wed, 19 Mar 2014 22:22:48 -0700 Subject: [PATCH] [ticket/11508] Remove unnecessary implode. PHPBB3-11508 --- phpBB/phpbb/path_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/path_helper.php b/phpBB/phpbb/path_helper.php index f770cb560d..a9b520be15 100644 --- a/phpBB/phpbb/path_helper.php +++ b/phpBB/phpbb/path_helper.php @@ -263,7 +263,7 @@ class path_helper continue; } - $params[$key] = implode('=', $arguments); + $params[$key] = $arguments[1]; } } else