diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-29 00:33:31 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-07-07 01:02:34 +0200 |
commit | 2db160ff87fa42ca6c47e580de9bc9d7e5cced49 (patch) | |
tree | 14aa95772848e1a813e338a33de8be45df401518 /phpBB/install/index.php | |
parent | 40937e21c58399a847d04f23423622b0e1894446 (diff) | |
download | forums-2db160ff87fa42ca6c47e580de9bc9d7e5cced49.tar forums-2db160ff87fa42ca6c47e580de9bc9d7e5cced49.tar.gz forums-2db160ff87fa42ca6c47e580de9bc9d7e5cced49.tar.bz2 forums-2db160ff87fa42ca6c47e580de9bc9d7e5cced49.tar.xz forums-2db160ff87fa42ca6c47e580de9bc9d7e5cced49.zip |
[ticket/12775] Rename config_php to config_php_file
PHPBB3-12775
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r-- | phpBB/install/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 1c81d552a2..040de1c8f3 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -119,8 +119,8 @@ $phpbb_class_loader_ext = new \phpbb\class_loader('\\', "{$phpbb_root_path}ext/" $phpbb_class_loader_ext->register(); // Set up container -$phpbb_config_php_handler = new \phpbb\config_php($phpbb_root_path, $phpEx); -$phpbb_container_builder = new \phpbb\di\container_factory($phpbb_config_php_handler, $phpbb_root_path, $phpEx); +$phpbb_config_php_file = new \phpbb\config_php_file($phpbb_root_path, $phpEx); +$phpbb_container_builder = new \phpbb\di\container_factory($phpbb_config_php_file, $phpbb_root_path, $phpEx); $phpbb_container_builder->set_use_extensions(false); $phpbb_container_builder->set_dump_container(false); $phpbb_container_builder->set_use_custom_pass(false); |