1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/template-engine] Delete template class, use phpbb_template instead.

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev
2011-05-01 04:03:06 -04:00
parent 48691b53a6
commit 87832d06cc
5 changed files with 4 additions and 13 deletions

View File

@@ -193,7 +193,7 @@ class messenger
// tpl_msg now holds a template object we can use to parse the template file
if (!isset($this->tpl_msg[$template_lang . $template_file]))
{
$this->tpl_msg[$template_lang . $template_file] = new template();
$this->tpl_msg[$template_lang . $template_file] = new phpbb_template();
$tpl = &$this->tpl_msg[$template_lang . $template_file];
$fallback_template_path = false;