From 09e308a06d7fcaa624afe7e4a86e178bab84a362 Mon Sep 17 00:00:00 2001 From: rxu Date: Wed, 13 May 2020 13:38:13 +0700 Subject: [PATCH] [ticket/16478] Fix phpBB Debug warning in installer PHPBB3-16478 --- phpBB/phpbb/install/helper/container_factory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/phpbb/install/helper/container_factory.php b/phpBB/phpbb/install/helper/container_factory.php index 655760270a..077a4fabe5 100644 --- a/phpBB/phpbb/install/helper/container_factory.php +++ b/phpBB/phpbb/install/helper/container_factory.php @@ -184,8 +184,8 @@ class container_factory // Get compatibility globals and constants $this->update_helper->include_file('includes/compatibility_globals.' . $this->php_ext); - register_compatibility_globals(); - $this->update_helper->include_file('includes/constants.' . $this->php_ext); + + register_compatibility_globals(); } }