diff options
author | Cesar G <prototech91@gmail.com> | 2014-03-19 22:22:48 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-22 15:21:02 -0700 |
commit | 9e605b1338821b5866102c527264304e91d8240f (patch) | |
tree | 48051e9b6700d13377b6a418c6721627a583abda /phpBB/phpbb/path_helper.php | |
parent | b0dd532c14830b6c92dee8f10cec14c3057369a9 (diff) | |
download | forums-9e605b1338821b5866102c527264304e91d8240f.tar forums-9e605b1338821b5866102c527264304e91d8240f.tar.gz forums-9e605b1338821b5866102c527264304e91d8240f.tar.bz2 forums-9e605b1338821b5866102c527264304e91d8240f.tar.xz forums-9e605b1338821b5866102c527264304e91d8240f.zip |
[ticket/11508] Remove unnecessary implode.
PHPBB3-11508
Diffstat (limited to 'phpBB/phpbb/path_helper.php')
-rw-r--r-- | phpBB/phpbb/path_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 |