From 632418ad6e844c3d71a16a47cac8ae3a22a02f1e Mon Sep 17 00:00:00 2001 From: Mark Shaw Date: Thu, 18 Feb 2016 23:56:53 -0500 Subject: [PATCH] [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 --- phpBB/phpbb/di/container_builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */