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

[feature/template-engine] Remove $include_once argument of display()

PHPBB3-9726
This commit is contained in:
Igor Wiedler
2011-07-10 01:05:54 +02:00
parent ae53623230
commit c58b09e65d
3 changed files with 9 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ class phpbb_template_template_test_case extends phpbb_test_case
protected function display($handle)
{
ob_start();
$this->assertTrue($this->template->display($handle, false));
$this->assertTrue($this->template->display($handle));
return self::trim_template_result(ob_get_clean());
}