aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-02-19 10:10:52 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-02-19 10:10:52 +0100
commit078116e189ead98180dd703ae83b4faa4435fe99 (patch)
tree8bcb807e0feadfaf5399de583f8df3774f00a81a
parentb7deef46ac2f49b310d05d94067607e8f19c0817 (diff)
parent632418ad6e844c3d71a16a47cac8ae3a22a02f1e (diff)
downloadforums-078116e189ead98180dd703ae83b4faa4435fe99.tar
forums-078116e189ead98180dd703ae83b4faa4435fe99.tar.gz
forums-078116e189ead98180dd703ae83b4faa4435fe99.tar.bz2
forums-078116e189ead98180dd703ae83b4faa4435fe99.tar.xz
forums-078116e189ead98180dd703ae83b4faa4435fe99.zip
Merge pull request #4187 from markshawtoronto/ticket/14489
[ticket/14489] Fix bug where extension custom compiler pass cannot be found
-rw-r--r--phpBB/phpbb/di/container_builder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/container_builder.php b/phpBB/phpbb/di/container_builder.php
index 9583da14f5..2fb248082f 100644
--- a/phpBB/phpbb/di/container_builder.php
+++ b/phpBB/phpbb/di/container_builder.php
@@ -589,7 +589,7 @@ class container_builder
->ignoreUnreadableDirs(true)
->ignoreVCS(true)
->followLinks()
- ->in($this->phpbb_root_path . 'ext/')
+ ->in($this->phpbb_root_path . 'ext')
;
/** @var \SplFileInfo $pass */