aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di
diff options
context:
space:
mode:
authorMark Shaw <mark.shaw@mail.utoronto.ca>2016-02-18 23:56:53 -0500
committerMark Shaw <mark.shaw@mail.utoronto.ca>2016-02-18 23:56:53 -0500
commit632418ad6e844c3d71a16a47cac8ae3a22a02f1e (patch)
tree8bcb807e0feadfaf5399de583f8df3774f00a81a /phpBB/phpbb/di
parentb7deef46ac2f49b310d05d94067607e8f19c0817 (diff)
downloadforums-632418ad6e844c3d71a16a47cac8ae3a22a02f1e.tar
forums-632418ad6e844c3d71a16a47cac8ae3a22a02f1e.tar.gz
forums-632418ad6e844c3d71a16a47cac8ae3a22a02f1e.tar.bz2
forums-632418ad6e844c3d71a16a47cac8ae3a22a02f1e.tar.xz
forums-632418ad6e844c3d71a16a47cac8ae3a22a02f1e.zip
[ticket/14489] Fix bug where extension custom compiler pass cannot be found.
This is returning an extra / on my machine which throws off the next code block, and then the class can't be found. PHPBB3-14489
Diffstat (limited to 'phpBB/phpbb/di')
-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 */