1
0
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:
Oleg Pudeyev 2011-05-11 19:25:07 -04:00
parent 504acaba6b
commit 7778771819

View File

@ -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