aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2011-09-20 23:33:08 +0100
committerChris Smith <toonarmy@phpbb.com>2011-09-20 23:33:08 +0100
commit903bc5b78a6208089349d8db9abb37158e4b8e16 (patch)
tree41f6ac3b97e80675bc04c35b1b285f397141a6f3 /phpBB
parent4e8e31c10b11972a073a79fbbd7865a1195ef456 (diff)
downloadforums-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.php2
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();