mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
[feature/template-engine] Move DEBUG_EXTRA check for $recompile up.
PHPBB3-9726
This commit is contained in:
parent
504acaba6b
commit
7778771819
@ -325,24 +325,20 @@ class phpbb_template
|
||||
$filename = $this->cachepath . str_replace('/', '.', $this->filename[$handle]) . '.' . $phpEx;
|
||||
$this->files_template[$handle] = (isset($user->theme['template_id'])) ? $user->theme['template_id'] : 0;
|
||||
|
||||
$recompile = (!file_exists($filename) || @filesize($filename) === 0 || ($config['load_tplcompile'] && @filemtime($filename) < @filemtime($this->files[$handle]))) ? true : false;
|
||||
$recompile = defined('DEBUG_EXTRA') ||
|
||||
!file_exists($filename) ||
|
||||
@filesize($filename) === 0 ||
|
||||
($config['load_tplcompile'] && @filemtime($filename) < @filemtime($this->files[$handle]));
|
||||
|
||||
if (!$recompile)
|
||||
if (!$recompile && $config['load_tplcompile'])
|
||||
{
|
||||
if (defined('DEBUG_EXTRA'))
|
||||
// No way around it: we need to check inheritance here
|
||||
if ($user->theme['template_inherits_id'] && !file_exists($this->files[$handle]))
|
||||
{
|
||||
$recompile = true;
|
||||
}
|
||||
else if ($config['load_tplcompile'])
|
||||
{
|
||||
// No way around it: we need to check inheritance here
|
||||
if ($user->theme['template_inherits_id'] && !file_exists($this->files[$handle]))
|
||||
{
|
||||
$this->files[$handle] = $this->files_inherit[$handle];
|
||||
$this->files_template[$handle] = $user->theme['template_inherits_id'];
|
||||
}
|
||||
$recompile = (@filemtime($filename) < @filemtime($this->files[$handle])) ? true : false;
|
||||
$this->files[$handle] = $this->files_inherit[$handle];
|
||||
$this->files_template[$handle] = $user->theme['template_inherits_id'];
|
||||
}
|
||||
$recompile = (@filemtime($filename) < @filemtime($this->files[$handle])) ? true : false;
|
||||
}
|
||||
|
||||
// Recompile page if the original template is newer, otherwise load the compiled version
|
||||
|
Loading…
x
Reference in New Issue
Block a user