diff --git a/typo3/sysext/core/Classes/Utility/GeneralUtility.php b/typo3/sysext/core/Classes/Utility/GeneralUtility.php index 22463dbd8d2f5ff205f764eeafd0e157425fc154..442addf43687479adf8112e003fe25e4f8ac34e9 100644 --- a/typo3/sysext/core/Classes/Utility/GeneralUtility.php +++ b/typo3/sysext/core/Classes/Utility/GeneralUtility.php @@ -2890,7 +2890,7 @@ class GeneralUtility } // Ensure there is only one slash $fullPath = rtrim($directory, '/') . '/' . ltrim($deepDirectory, '/'); - if ($fullPath !== '' && !is_dir($fullPath)) { + if ($fullPath !== '/' && !is_dir($fullPath)) { $firstCreatedPath = static::createDirectoryPath($fullPath); if ($firstCreatedPath !== '') { static::fixPermissions($firstCreatedPath, true);