diff options
| author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-04-26 19:41:07 +0200 |
|---|---|---|
| committer | Nicofuma <github@nicofuma.fr> | 2015-05-14 23:04:03 +0200 |
| commit | c96e7ef1711932c2236620903bc256b346514dfc (patch) | |
| tree | de827ea68dc8328767003b50ca7ef43cde17ce58 /phpBB/install/install_install.php | |
| parent | 0b8632e7504a2ea46cdcc7493f15043b056f4af2 (diff) | |
| download | forums-c96e7ef1711932c2236620903bc256b346514dfc.tar forums-c96e7ef1711932c2236620903bc256b346514dfc.tar.gz forums-c96e7ef1711932c2236620903bc256b346514dfc.tar.bz2 forums-c96e7ef1711932c2236620903bc256b346514dfc.tar.xz forums-c96e7ef1711932c2236620903bc256b346514dfc.zip | |
[ticket/13770] Wither interface for container_builder
PHPBB3-13770
Diffstat (limited to 'phpBB/install/install_install.php')
| -rw-r--r-- | phpBB/install/install_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index be6fa40566..e8890a3d08 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -110,8 +110,8 @@ class install_install extends module $request->enable_super_globals(); // Create a normal container now - $phpbb_container_builder = new \phpbb\di\container_builder($phpbb_config_php_file, $phpbb_root_path, $phpEx); - $phpbb_container = $phpbb_container_builder->get_container(); + $phpbb_container_builder = new \phpbb\di\container_builder($phpbb_root_path, $phpEx); + $phpbb_container = $phpbb_container_builder->with_config($phpbb_config_php_file)->get_container(); // Sets the global variables /* @var $cache \phpbb\cache\service */ |
