From adea3e734a90bd45994d7971f59581364751501e Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 30 Jan 2022 15:18:47 +0100 Subject: [PATCH] [ticket/16960] Set config.php service even if container is not compiled PHPBB3-16960 --- 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 79b00be19a..fe4127f30e 100644 --- a/phpBB/phpbb/di/container_builder.php +++ b/phpBB/phpbb/di/container_builder.php @@ -229,7 +229,7 @@ class container_builder } } - if ($this->compile_container && $this->config_php_file) + if ($this->config_php_file) { $this->container->set('config.php', $this->config_php_file); }