1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +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

@@ -33,7 +33,7 @@ class phpbb_template_template_test extends phpbb_test_case
private function setup_engine()
{
$this->template_path = dirname(__FILE__) . '/templates';
$this->template = new template();
$this->template = new phpbb_template();
$this->template->set_custom_template($this->template_path, 'tests');
}