diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2013-01-02 01:31:06 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2013-01-02 01:31:06 -0500 |
commit | 210f627f6791a57aaa3555d12173bc569e76172c (patch) | |
tree | 0651d7f03fc74c5274125820376b8b63e6e6caac /phpBB/install/install_install.php | |
parent | 8d3edd412870640f7b906f3da67de3c5303dcb7a (diff) | |
download | forums-210f627f6791a57aaa3555d12173bc569e76172c.tar forums-210f627f6791a57aaa3555d12173bc569e76172c.tar.gz forums-210f627f6791a57aaa3555d12173bc569e76172c.tar.bz2 forums-210f627f6791a57aaa3555d12173bc569e76172c.tar.xz forums-210f627f6791a57aaa3555d12173bc569e76172c.zip |
[ticket/11305] Use phpbb_create_default_container.
PHPBB3-11305
Diffstat (limited to 'phpBB/install/install_install.php')
-rw-r--r-- | phpBB/install/install_install.php | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 06fc2d2176..1f3ba5da00 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -103,18 +103,7 @@ class install_install extends module case 'final': // Create a normal container now - $phpbb_container = phpbb_create_dumped_container_unless_debug( - array( - new phpbb_di_extension_config($phpbb_root_path . 'config.' . $phpEx), - new phpbb_di_extension_core($phpbb_root_path), - ), - array( - new phpbb_di_pass_collection_pass(), - new phpbb_di_pass_kernel_pass(), - ), - $phpbb_root_path, - $phpEx - ); + $phpbb_container = phpbb_create_default_container($phpbb_root_path, $phpEx); // Writes into global $cache $cache = $phpbb_container->get('cache'); |