aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/event/recursive_event_filter_iterator.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/phpbb/event/recursive_event_filter_iterator.php b/phpBB/phpbb/event/recursive_event_filter_iterator.php
index 970c4bbd04..ef2f2ec0ed 100644
--- a/phpBB/phpbb/event/recursive_event_filter_iterator.php
+++ b/phpBB/phpbb/event/recursive_event_filter_iterator.php
@@ -55,6 +55,7 @@ class recursive_event_filter_iterator extends \RecursiveFilterIterator
&& $filename[0] !== '.'
&& strpos($relative_path, $this->root_path . 'cache/') !== 0
&& strpos($relative_path, $this->root_path . 'develop/') !== 0
+ && strpos($relative_path, $this->root_path . 'docs/') !== 0
&& strpos($relative_path, $this->root_path . 'ext/') !== 0
&& strpos($relative_path, $this->root_path . 'files/') !== 0
&& strpos($relative_path, $this->root_path . 'includes/utf/') !== 0
@@ -62,6 +63,7 @@ class recursive_event_filter_iterator extends \RecursiveFilterIterator
&& strpos($relative_path, $this->root_path . 'phpbb/db/migration/data/') !== 0
&& strpos($relative_path, $this->root_path . 'phpbb/event/') !== 0
&& strpos($relative_path, $this->root_path . 'store/') !== 0
+ && strpos($relative_path, $this->root_path . 'tests/') !== 0
&& strpos($relative_path, $this->root_path . 'vendor/') !== 0
;
}