aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/filesystem.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-13 20:04:53 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-29 23:44:10 +0200
commit638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9 (patch)
treee71f5a2a63b2fe22123214881eea670b05282839 /phpBB/phpbb/filesystem.php
parent41e52d9c9d3add473f46c6cc12d3fc208516d581 (diff)
downloadforums-638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9.tar
forums-638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9.tar.gz
forums-638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9.tar.bz2
forums-638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9.tar.xz
forums-638d43d6fea5b5c3c1690b23d7cbe7b9bcef48c9.zip
[ticket/12099] Fix clean_path() ".." stripping when previous directory was "."
PHPBB3-12099
Diffstat (limited to 'phpBB/phpbb/filesystem.php')
-rw-r--r--phpBB/phpbb/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/filesystem.php b/phpBB/phpbb/filesystem.php
index 683a12ab76..77517082e5 100644
--- a/phpBB/phpbb/filesystem.php
+++ b/phpBB/phpbb/filesystem.php
@@ -35,7 +35,7 @@ class filesystem
continue;
}
- if ($part === '..' && !empty($filtered) && $filtered[sizeof($filtered) - 1] !== '..')
+ if ($part === '..' && !empty($filtered) && $filtered[sizeof($filtered) - 1] !== '.' && $filtered[sizeof($filtered) - 1] !== '..')
{
array_pop($filtered);
}