diff options
| author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-03 11:27:15 +0300 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2012-04-19 04:15:11 +0200 |
| commit | ef295a28606789874b524445f9fa690408c8eafc (patch) | |
| tree | 8cdeb86635179dd84caea10da909ee70ffd3af93 /tests/template/renderer_eval_test.php | |
| parent | 733018f99a7d8c6200921f31c683606c6f01fe76 (diff) | |
| download | forums-ef295a28606789874b524445f9fa690408c8eafc.tar forums-ef295a28606789874b524445f9fa690408c8eafc.tar.gz forums-ef295a28606789874b524445f9fa690408c8eafc.tar.bz2 forums-ef295a28606789874b524445f9fa690408c8eafc.tar.xz forums-ef295a28606789874b524445f9fa690408c8eafc.zip | |
[ticket/10756] Renaming template classes
Renaming template classes from phpbb_style_template_ to phpbb_template_
PHPBB3-10756
Diffstat (limited to 'tests/template/renderer_eval_test.php')
| -rw-r--r-- | tests/template/renderer_eval_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template/renderer_eval_test.php b/tests/template/renderer_eval_test.php index 9b4f74c824..7ebb8b9bda 100644 --- a/tests/template/renderer_eval_test.php +++ b/tests/template/renderer_eval_test.php @@ -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 { |
