aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di/container_builder.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/di/container_builder.php')
-rw-r--r--phpBB/phpbb/di/container_builder.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/container_builder.php b/phpBB/phpbb/di/container_builder.php
index 65db92ada0..ab10073013 100644
--- a/phpBB/phpbb/di/container_builder.php
+++ b/phpBB/phpbb/di/container_builder.php
@@ -183,7 +183,10 @@ class container_builder
$this->container->set('config.php', $this->config_php_file);
- $this->inject_dbal();
+ if ($this->compile_container)
+ {
+ $this->inject_dbal();
+ }
return $this->container;
}