mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 08:17:47 +02:00
[ticket/10756] Renaming template classes
Renaming template classes from phpbb_style_template_ to phpbb_template_ PHPBB3-10756
This commit is contained in:
committed by
Nils Adermann
parent
733018f99a
commit
ef295a2860
@@ -13,8 +13,8 @@ class phpbb_template_renderer_eval_test extends phpbb_test_case
|
||||
{
|
||||
$compiled_code = '<a href="<?php echo \'Test\'; ?>">';
|
||||
$valid_code = '<a href="Test">';
|
||||
$context = new phpbb_style_template_context();
|
||||
$template = new phpbb_style_template_renderer_eval($compiled_code, NULL);
|
||||
$context = new phpbb_template_context();
|
||||
$template = new phpbb_template_renderer_eval($compiled_code, NULL);
|
||||
ob_start();
|
||||
try
|
||||
{
|
||||
|
@@ -16,7 +16,7 @@ class phpbb_template_template_compile_test extends phpbb_test_case
|
||||
|
||||
protected function setUp()
|
||||
{
|
||||
$this->template_compile = new phpbb_style_template_compile(false, null, '');
|
||||
$this->template_compile = new phpbb_template_compile(false, null, '');
|
||||
$this->template_path = dirname(__FILE__) . '/templates';
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user