diff --git a/thirdparty/pear/Cache/Lite.php b/thirdparty/pear/Cache/Lite.php index 29c6667..574870d 100644 --- a/thirdparty/pear/Cache/Lite.php +++ b/thirdparty/pear/Cache/Lite.php @@ -574,7 +574,7 @@ class Cache_Lite */ function _unlink($file) { - if (!unlink($file)) { + if (!@unlink($file)) { return $this->raiseError('Cache_Lite : Unable to remove cache !', -3); }