1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02:00

[feature/merging-style-components] Renaming template classes

Changing template classes prefixes from phpbb_template to phpbb_style (for classes that will work with styles) or phpbb_style_template (for classes that are specific to templates)

PHPBB3-10632
This commit is contained in:
Vjacheslav Trushkin
2012-03-14 23:12:11 +02:00
parent 7d414d04ca
commit b7d84a586c
19 changed files with 57 additions and 57 deletions

View File

@@ -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_template_context();
$template = new phpbb_template_renderer_eval($compiled_code, NULL);
$context = new phpbb_style_template_context();
$template = new phpbb_style_template_renderer_eval($compiled_code, NULL);
ob_start();
try
{