mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[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
This commit is contained in:
parent
b7deef46ac
commit
632418ad6e
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue