diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-10-01 00:26:39 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-10-01 00:26:39 +0200 |
commit | a8e74fff9bc73342f95b5e863bc7cc7894b37f8a (patch) | |
tree | 04eeec2ba298102cac60740724c3888e3dbd4f2e /phpBB/includes/functions.php | |
parent | cb8b245639ecbdd749c7cebd7db28a79942731d4 (diff) | |
parent | 3a413cbf30f0921e7508501492c77f652b29dc33 (diff) | |
download | forums-a8e74fff9bc73342f95b5e863bc7cc7894b37f8a.tar forums-a8e74fff9bc73342f95b5e863bc7cc7894b37f8a.tar.gz forums-a8e74fff9bc73342f95b5e863bc7cc7894b37f8a.tar.bz2 forums-a8e74fff9bc73342f95b5e863bc7cc7894b37f8a.tar.xz forums-a8e74fff9bc73342f95b5e863bc7cc7894b37f8a.zip |
Merge pull request #3010 from Nicofuma/ticket/13120
[ticket/13120] Follows the symlinks in phpbb_load_extensions_autoloaders
* Nicofuma/ticket/13120:
[ticket/13120] Follows the symlinks in phpbb_load_extensions_autoloaders
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index fe03efddf2..22c1a092b5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -31,7 +31,7 @@ function phpbb_load_extensions_autoloaders($phpbb_root_path) new \phpbb\recursive_dot_prefix_filter_iterator( new \RecursiveDirectoryIterator( $phpbb_root_path . 'ext/', - \FilesystemIterator::SKIP_DOTS + \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS ) ), \RecursiveIteratorIterator::SELF_FIRST |