mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11388] Disable cache if IN_INSTALL defined
PHPBB3-11388
This commit is contained in:
parent
bc4b5c87a9
commit
a846048918
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ class phpbb_template_twig implements phpbb_template
|
||||||
$this->phpbb_root_path,
|
$this->phpbb_root_path,
|
||||||
$loader,
|
$loader,
|
||||||
array(
|
array(
|
||||||
'cache' => $this->cachepath,
|
'cache' => (defined('IN_INSTALL')) ? false : $this->cachepath,
|
||||||
'debug' => defined('DEBUG'),
|
'debug' => defined('DEBUG'),
|
||||||
'auto_reload' => (bool) $this->config['load_tplcompile'],
|
'auto_reload' => (bool) $this->config['load_tplcompile'],
|
||||||
'autoescape' => false,
|
'autoescape' => false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue