From 1ee7df57ae9ab0a111a1a29a8b8b2a1d5a1d42e2 Mon Sep 17 00:00:00 2001 From: Oliver Schramm Date: Tue, 15 Jul 2014 22:58:28 +0200 Subject: [PATCH] [ticket/12855] Dump the container based on DEBUG_CONTAINER instead of DEBUG PHPBB3-12855 --- 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 ab10073013..553b723cc8 100644 --- a/phpBB/phpbb/di/container_builder.php +++ b/phpBB/phpbb/di/container_builder.php @@ -175,7 +175,7 @@ class container_builder $this->container->compile(); } - if ($this->dump_container && !defined('DEBUG')) + if ($this->dump_container && !defined('DEBUG_CONTAINER')) { $this->dump_container($container_filename); }