1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12620] Add a test using a custom DI extension in an extension

PHPBB3-12620
This commit is contained in:
Tristan Darricau
2014-11-11 19:10:43 +01:00
parent acc91a2bbf
commit 0a1db77ea8
4 changed files with 37 additions and 1 deletions

View File

@@ -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))
{