diff options
author | Chris Smith <toonarmy@phpbb.com> | 2011-09-20 23:33:08 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2011-09-20 23:33:08 +0100 |
commit | 903bc5b78a6208089349d8db9abb37158e4b8e16 (patch) | |
tree | 41f6ac3b97e80675bc04c35b1b285f397141a6f3 /phpBB | |
parent | 4e8e31c10b11972a073a79fbbd7865a1195ef456 (diff) | |
download | forums-903bc5b78a6208089349d8db9abb37158e4b8e16.tar forums-903bc5b78a6208089349d8db9abb37158e4b8e16.tar.gz forums-903bc5b78a6208089349d8db9abb37158e4b8e16.tar.bz2 forums-903bc5b78a6208089349d8db9abb37158e4b8e16.tar.xz forums-903bc5b78a6208089349d8db9abb37158e4b8e16.zip |
[ticket/10374] Remove 'custom template' cache prefix.
PHPBB3-10374
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/template/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php index 4007b77db8..0495ade9c5 100644 --- a/phpBB/includes/template/template.php +++ b/phpBB/includes/template/template.php @@ -122,7 +122,7 @@ class phpbb_template { $this->locator->set_custom_template($template_path, $fallback_template_path); - $this->cachepath = $this->phpbb_root_path . 'cache/ctpl_' . str_replace('_', '-', $style_name) . '_'; + $this->cachepath = $this->phpbb_root_path . 'cache/tpl_' . str_replace('_', '-', $style_name) . '_'; $this->context = new phpbb_template_context(); |