aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/bbcode.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-11-02 18:51:35 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-11-02 18:51:35 -0400
commit767d09227bd848da21dc3e255b1dacd20cbad1f7 (patch)
tree636a4151aea63f078ad666d4eb3c74baa361efbc /phpBB/includes/bbcode.php
parentd7a626c70bdfd7aea5e10ec891230cbd2e94f862 (diff)
downloadforums-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.php2
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'));