mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/extension-manager] Find dirs with SELF_FIRST setting on iterator
PHPBB3-10323
This commit is contained in:
parent
f61ee5d6f5
commit
cffc676f17
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ class phpbb_extension_finder
|
|||
}
|
||||
$directory_pattern = '#' . $directory_pattern . '#';
|
||||
|
||||
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
|
||||
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path), RecursiveIteratorIterator::SELF_FIRST);
|
||||
foreach ($iterator as $file_info)
|
||||
{
|
||||
if ($file_info->isDir() == $is_dir)
|
||||
|
|
Loading…
Add table
Reference in a new issue