From eaf3efe6e00b76513aee5f7bae698be44d4a8110 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sat, 29 Nov 2003 23:42:10 +0000 Subject: [PATCH] Quiet please! git-svn-id: file:///svn/phpbb/trunk@4698 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index 8948e206d2..0535fa0a82 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -134,7 +134,7 @@ class template $filename = $this->cachepath . $this->filename[$handle] . '.' . (($this->static_lang) ? $user->data['user_lang'] . '.' : '') . $phpEx; - $recompile = (($config['load_tplcompile'] && filemtime($filename) < filemtime($this->files[$handle])) || !file_exists($filename)) ? true : false; + $recompile = (($config['load_tplcompile'] && @filemtime($filename) < filemtime($this->files[$handle])) || !file_exists($filename)) ? true : false; // Recompile page if the original template is newer, otherwise load the compiled version if (!$recompile)