diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-11-11 19:10:43 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-20 21:01:03 +0100 |
commit | 0a1db77ea85116adf24f9d3f0b92a44f818a107f (patch) | |
tree | 5ded6ced21caab395317997844ab08e4cb262e55 /phpBB/phpbb/di | |
parent | acc91a2bbf28656d4a6917b457ba3dd6b4e02e37 (diff) | |
download | forums-0a1db77ea85116adf24f9d3f0b92a44f818a107f.tar forums-0a1db77ea85116adf24f9d3f0b92a44f818a107f.tar.gz forums-0a1db77ea85116adf24f9d3f0b92a44f818a107f.tar.bz2 forums-0a1db77ea85116adf24f9d3f0b92a44f818a107f.tar.xz forums-0a1db77ea85116adf24f9d3f0b92a44f818a107f.zip |
[ticket/12620] Add a test using a custom DI extension in an extension
PHPBB3-12620
Diffstat (limited to 'phpBB/phpbb/di')
-rw-r--r-- | phpBB/phpbb/di/container_builder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/container_builder.php b/phpBB/phpbb/di/container_builder.php index c665c8444c..62bba5baf9 100644 --- a/phpBB/phpbb/di/container_builder.php +++ b/phpBB/phpbb/di/container_builder.php @@ -162,7 +162,7 @@ class container_builder $installed_exts = $this->get_installed_extensions(); foreach ($installed_exts as $ext_name => $path) { - $extension_class = '\\' . str_replace('/', '\\', $ext_name) . '\\di\extension'; + $extension_class = '\\' . str_replace('/', '\\', $ext_name) . '\\di\\extension'; if (!class_exists($extension_class)) { |