[BUGFIX] FAL wrong \RecursiveIteratorIterator usage
If using \RecursiveIteratorIterator on \RecursiveDirectoryIterator, flag SELF_FIRST must be used, otherwise only leaves (files) and not also directories are returned. This behavior is a bit dependent on the PHP version used, younger versions (> 5.3.3 seem to do it correctly). Furthermore, in copyFolderWithinStorage() $itemSubPath contains the "relative" path part and not only the node name, checking equality to "." or ".." fails then if handling sub directories. So, directories may be created multiple times, resulting in mkdir() warnings. This is fixed by getting the node name itself and using that for comparison. Resolves: #50476 Releases: 6.2, 6.1, 6.0 Change-Id: Ifac4b28f4e02ec8a9bf5891739cf66c1e1074af9 Reviewed-on: https://review.typo3.org/22602 Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters Reviewed-by: Anja Leichsenring Tested-by: Anja Leichsenring Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn
Please register or sign in to comment