diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-02 18:51:35 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-02 18:51:35 -0400 |
commit | 767d09227bd848da21dc3e255b1dacd20cbad1f7 (patch) | |
tree | 636a4151aea63f078ad666d4eb3c74baa361efbc /phpBB/includes/bbcode.php | |
parent | d7a626c70bdfd7aea5e10ec891230cbd2e94f862 (diff) | |
download | forums-767d09227bd848da21dc3e255b1dacd20cbad1f7.tar forums-767d09227bd848da21dc3e255b1dacd20cbad1f7.tar.gz forums-767d09227bd848da21dc3e255b1dacd20cbad1f7.tar.bz2 forums-767d09227bd848da21dc3e255b1dacd20cbad1f7.tar.xz forums-767d09227bd848da21dc3e255b1dacd20cbad1f7.zip |
[ticket/10933] Dependency inject template context.
PHPBB3-10933
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r-- | phpBB/includes/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index 444446e9c3..b9ffa8091c 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -134,7 +134,7 @@ class bbcode $style_resource_locator = new phpbb_style_resource_locator(); $style_path_provider = new phpbb_style_extension_path_provider($phpbb_extension_manager, new phpbb_style_path_provider()); - $template = new phpbb_template($phpbb_root_path, $phpEx, $config, $user, $style_resource_locator); + $template = new phpbb_template($phpbb_root_path, $phpEx, $config, $user, $style_resource_locator, new phpbb_template_context()); $style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $style_resource_locator, $style_path_provider, $template); $style->set_style(); $template->set_filenames(array('bbcode.html' => 'bbcode.html')); |