diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-12 21:19:09 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-12 21:35:07 +0200 |
commit | bbaa3411b04c06c519e8dd215a0251c97263eac4 (patch) | |
tree | 1354e832afc7e379c307932ed2243b6978a859a8 /phpBB/includes/style | |
parent | 6a3d77d76e9a6ee17acbd29da8486742f60a2514 (diff) | |
download | forums-bbaa3411b04c06c519e8dd215a0251c97263eac4.tar forums-bbaa3411b04c06c519e8dd215a0251c97263eac4.tar.gz forums-bbaa3411b04c06c519e8dd215a0251c97263eac4.tar.bz2 forums-bbaa3411b04c06c519e8dd215a0251c97263eac4.tar.xz forums-bbaa3411b04c06c519e8dd215a0251c97263eac4.zip |
[ticket/10844] Make sure ext_path has no trailing slash
PHPBB3-10844
Diffstat (limited to 'phpBB/includes/style')
-rw-r--r-- | phpBB/includes/style/extension_path_provider.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/style/extension_path_provider.php b/phpBB/includes/style/extension_path_provider.php index e658abcb42..ec1d85f821 100644 --- a/phpBB/includes/style/extension_path_provider.php +++ b/phpBB/includes/style/extension_path_provider.php @@ -108,6 +108,11 @@ class phpbb_style_extension_path_provider extends phpbb_extension_provider imple ->get_directories(true, false, true); foreach ($result as $ext => $ext_path) { + // Make sure $ext_path has no ending slash + if (substr($ext_path, -1) === '/') + { + $ext_path = substr($ext_path, 0, -1); + } $directories[$ext][] = $ext_path; } } |