[BUGFIX] Fix JS concat if first file is forced on top
If a javascript file is forceOnTop the script uses array_unshift() to put the file at the beginning of the section array. If this is the first file that got processed, the array does not exist yet, so the array_unshift function returns NULL and the file will not added to the array. The fix properly initalizes the section sub-array. Resolves: #56242 Releases: 6.2, 6.1 Change-Id: I23af7862263fb0685032c34ded8736df87ddeb99 Reviewed-on: https://review.typo3.org/27793 Reviewed-by: Markus Klein Tested-by: Markus Klein Reviewed-by: Benjamin Mack Tested-by: Benjamin Mack
Please register or sign in to comment