From 903bc5b78a6208089349d8db9abb37158e4b8e16 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Tue, 20 Sep 2011 23:33:08 +0100 Subject: [PATCH] [ticket/10374] Remove 'custom template' cache prefix. PHPBB3-10374 --- phpBB/includes/template/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();