aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-11-29 23:42:10 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-11-29 23:42:10 +0000
commiteaf3efe6e00b76513aee5f7bae698be44d4a8110 (patch)
tree08f40b460fd25383a58fb0e46fe543aa19aa5297 /phpBB/includes/template.php
parente403277ce206e9ba2a556ad0cd33817a81db8ace (diff)
downloadforums-eaf3efe6e00b76513aee5f7bae698be44d4a8110.tar
forums-eaf3efe6e00b76513aee5f7bae698be44d4a8110.tar.gz
forums-eaf3efe6e00b76513aee5f7bae698be44d4a8110.tar.bz2
forums-eaf3efe6e00b76513aee5f7bae698be44d4a8110.tar.xz
forums-eaf3efe6e00b76513aee5f7bae698be44d4a8110.zip
Quiet please!
git-svn-id: file:///svn/phpbb/trunk@4698 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/template.php')
-rw-r--r--phpBB/includes/template.php2
1 files changed, 1 insertions, 1 deletions
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)