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 /phpBB/includes/template/compile.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 'phpBB/includes/template/compile.php')
-rw-r--r-- | phpBB/includes/template/compile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/template/compile.php b/phpBB/includes/template/compile.php index fa0928f424..82b301c1a2 100644 --- a/phpBB/includes/template/compile.php +++ b/phpBB/includes/template/compile.php @@ -15,7 +15,7 @@ if (!defined('IN_PHPBB')) exit; } -stream_filter_register('phpbb_template', 'phpbb_style_template_filter'); +stream_filter_register('phpbb_template', 'phpbb_template_filter'); /** * Extension of template class - Functions needed for compiling templates only. @@ -23,7 +23,7 @@ stream_filter_register('phpbb_template', 'phpbb_style_template_filter'); * @package phpBB3 * @uses template_filter As a PHP stream filter to perform compilation of templates */ -class phpbb_style_template_compile +class phpbb_template_compile { /** * Array of parameters to forward to template filter |