Bug #105541 » empty_rootline.patch
Classes/TypoScript/IncludeTree/SysTemplateRepository.php → Classes/TypoScript/IncludeTree/SysTemplateRepository.php (date 1730794802911) | ||
---|---|---|
*/
|
||
public function getSysTemplateRowsByRootline(array $rootline, ?ServerRequestInterface $request = null): array
|
||
{
|
||
if ($rootline === []) {
|
||
return [];
|
||
}
|
||
// Site-root node first!
|
||
$rootLinePageIds = array_reverse(array_column($rootline, 'uid'));
|
||
$sysTemplateRows = [];
|