diff options
author | David King <imkingdavid@gmail.com> | 2013-10-03 09:25:11 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-10-03 09:25:11 -0700 |
commit | 2683188206e79c4a5b78ac16ffb43d1d53f3d5ff (patch) | |
tree | 51a821c2097be32b94c7f2c30222b3d1deba7a32 /phpBB/install/index.php | |
parent | f2de39f0b4a211510c5bda9cf0b9a211a4ec5cf0 (diff) | |
parent | 51c0aec066a4029f626ee300b3a34a0cc97c6031 (diff) | |
download | forums-2683188206e79c4a5b78ac16ffb43d1d53f3d5ff.tar forums-2683188206e79c4a5b78ac16ffb43d1d53f3d5ff.tar.gz forums-2683188206e79c4a5b78ac16ffb43d1d53f3d5ff.tar.bz2 forums-2683188206e79c4a5b78ac16ffb43d1d53f3d5ff.tar.xz forums-2683188206e79c4a5b78ac16ffb43d1d53f3d5ff.zip |
Merge pull request #1726 from EXreaction/ticket/11850
Fix $user->page on pages through the controller
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r-- | phpBB/install/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 161dc78173..c9bf76bf04 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -244,6 +244,8 @@ $config = new \phpbb\config\config(array( 'load_tplcompile' => '1' )); +$symfony_request = $phpbb_container->get('symfony_request'); +$phpbb_filesystem = $phpbb_container->get('filesystem'); $phpbb_path_helper = $phpbb_container->get('path_helper'); $template = new \phpbb\template\twig\twig($phpbb_path_helper, $config, $user, new \phpbb\template\context()); $paths = array($phpbb_root_path . 'install/update/new/adm/style', $phpbb_admin_path . 'style'); |