diff --git a/typo3/sysext/core/Classes/Utility/GeneralUtility.php b/typo3/sysext/core/Classes/Utility/GeneralUtility.php index 716710f4efd9d153b6468c7a4d65f3c84f8fb21d..ac6669255f07cad45f3e3b316591329130167356 100644 --- a/typo3/sysext/core/Classes/Utility/GeneralUtility.php +++ b/typo3/sysext/core/Classes/Utility/GeneralUtility.php @@ -2225,6 +2225,7 @@ class GeneralUtility } $pathPrefix = $path . '/'; + $allowedFileExtensionArray = self::trimExplode(',', $extensionList); $extensionList = ',' . str_replace(' ', '', $extensionList) . ','; $files = []; foreach ($rawFileList as $entry) { @@ -2233,15 +2234,17 @@ class GeneralUtility continue; } - if ( - ($extensionList === ',,' || stripos($extensionList, ',' . pathinfo($entry, PATHINFO_EXTENSION) . ',') !== false) - && ($excludePattern === '' || !preg_match(('/^' . $excludePattern . '$/'), $entry)) - ) { - if ($order !== 'mtime') { - $files[] = $entry; - } else { - // Store the value in the key so we can do a fast asort later. - $files[$entry] = filemtime($completePathToEntry); + foreach ($allowedFileExtensionArray as $allowedFileExtension) { + if ( + ($extensionList === ',,' || stripos($extensionList, ',' . substr($entry, strlen($allowedFileExtension)*-1, strlen($allowedFileExtension)) . ',') !== false) + && ($excludePattern === '' || !preg_match(('/^' . $excludePattern . '$/'), $entry)) + ) { + if ($order !== 'mtime') { + $files[] = $entry; + } else { + // Store the value in the key so we can do a fast asort later. + $files[$entry] = filemtime($completePathToEntry); + } } } }