diff options
author | Nils Adermann <naderman@naderman.de> | 2011-09-21 00:41:17 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-09-21 00:41:17 +0200 |
commit | 207f2495211fab0400a9f005bc9c307a3f51d335 (patch) | |
tree | 4b9ea6a1496f0abc36b1539e66beaa4fbccba822 /phpBB | |
parent | 57451a2014bba889ea8fe3c8053c6442948cc728 (diff) | |
parent | 903bc5b78a6208089349d8db9abb37158e4b8e16 (diff) | |
download | forums-207f2495211fab0400a9f005bc9c307a3f51d335.tar forums-207f2495211fab0400a9f005bc9c307a3f51d335.tar.gz forums-207f2495211fab0400a9f005bc9c307a3f51d335.tar.bz2 forums-207f2495211fab0400a9f005bc9c307a3f51d335.tar.xz forums-207f2495211fab0400a9f005bc9c307a3f51d335.zip |
Merge remote-tracking branch 'github-cs278/ticket/10374' into develop
* github-cs278/ticket/10374:
[ticket/10374] Remove 'custom template' cache prefix.
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(); |