diff --git a/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php b/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php index e8f7a3d9e3e7ed1050c6a7912e94234488e9c3a6..64ec0f84f2e73353fa49515f66e8bb77bb36a879 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/FileBackend.php @@ -237,7 +237,7 @@ class FileBackend extends \TYPO3\CMS\Core\Cache\Backend\SimpleFileBackend implem if (file_exists($pathAndFilename) === FALSE) { return FALSE; } - if (unlink($pathAndFilename) === FALSE) { + if (@unlink($pathAndFilename) === FALSE) { return FALSE; } return TRUE;