diff --git a/typo3/sysext/core/Classes/IO/PharStreamWrapper.php b/typo3/sysext/core/Classes/IO/PharStreamWrapper.php index 0b53bdbcb6fbfdc5e3d68caa02c636a396636b9b..69ffdfb99e07b5cff00eb4239948baec24e7e585 100644 --- a/typo3/sysext/core/Classes/IO/PharStreamWrapper.php +++ b/typo3/sysext/core/Classes/IO/PharStreamWrapper.php @@ -472,7 +472,7 @@ class PharStreamWrapper while (count($parts)) { $currentPath = implode('/', $parts); - if (file_exists($currentPath)) { + if (@file_exists($currentPath)) { return $currentPath; } array_pop($parts);