diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-02 11:29:32 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-02 11:29:32 -0500 |
commit | 709b3e98034e537fb3cbe5cbcb1511002c2d372d (patch) | |
tree | d8538d8d5d2d7fbebb7d2c944341189ca5c2176b /phpBB/includes/bbcode.php | |
parent | c6c064a1360cf6ef488adbe516cea5c4d7138f0c (diff) | |
download | forums-709b3e98034e537fb3cbe5cbcb1511002c2d372d.tar forums-709b3e98034e537fb3cbe5cbcb1511002c2d372d.tar.gz forums-709b3e98034e537fb3cbe5cbcb1511002c2d372d.tar.bz2 forums-709b3e98034e537fb3cbe5cbcb1511002c2d372d.tar.xz forums-709b3e98034e537fb3cbe5cbcb1511002c2d372d.zip |
[feature/twig] Fix BBCode parser
PHPBB3-11598
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 ecbb056045..fd00728510 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -138,7 +138,7 @@ class bbcode $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')); - $this->template_filename = $style_resource_locator->get_source_file_for_handle('bbcode.html'); + $this->template_filename = $template->get_source_file_for_handle('bbcode.html'); } $bbcode_ids = $rowset = $sql = array(); |