diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-07-30 21:02:40 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-07-30 21:02:40 +0300 |
commit | 5eb321d3113136f5e6cbc1f0ad911636f93f94df (patch) | |
tree | 40aed5ae9019e5ee5763162b03b04f1c2a55f080 /phpBB/phpbb | |
parent | 212294382d2626012bb1caf0dde1392e59b1ca31 (diff) | |
download | forums-5eb321d3113136f5e6cbc1f0ad911636f93f94df.tar forums-5eb321d3113136f5e6cbc1f0ad911636f93f94df.tar.gz forums-5eb321d3113136f5e6cbc1f0ad911636f93f94df.tar.bz2 forums-5eb321d3113136f5e6cbc1f0ad911636f93f94df.tar.xz forums-5eb321d3113136f5e6cbc1f0ad911636f93f94df.zip |
[ticket/11688] Fix docblock
PHPBB3-11688
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/cache/driver/file.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/cache/driver/file.php b/phpBB/phpbb/cache/driver/file.php index 66a74ea4eb..944dfd6541 100644 --- a/phpBB/phpbb/cache/driver/file.php +++ b/phpBB/phpbb/cache/driver/file.php @@ -249,6 +249,10 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base /** * Remove directory + * + * @param string $dir Directory to remove + * + * @return null */ protected function remove_dir($dir) { @@ -267,6 +271,7 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base { continue; } + if ($fileInfo->isDir()) { $this->remove_dir($fileInfo->getPathname()); |