diff options
Diffstat (limited to 'phpBB/includes/acm/acm_file.php')
-rw-r--r-- | phpBB/includes/acm/acm_file.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index 69b89a4e2d..c5c5420c70 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -86,7 +86,7 @@ class acm include($this->cache_dir . $entry); if ($expired) { - unlink($this->cache_dir . $entry); + @unlink($this->cache_dir . $entry); } } @closedir($dir); @@ -174,7 +174,7 @@ class acm if (preg_match('#/\*.*?\W' . $regex . '\W.*?\*/#s', $file, $m)) { - unlink($this->cache_dir . $entry); + @unlink($this->cache_dir . $entry); } } @closedir($dir); @@ -271,7 +271,7 @@ class acm } else if ($expired) { - unlink($this->cache_dir . 'sql_' . md5($query) . ".$phpEx"); + @unlink($this->cache_dir . 'sql_' . md5($query) . ".$phpEx"); return false; } |