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:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user