diff --git a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php index 2ac17b63b50e8249a6fd88e6f600708e200d08a2..e7c9109f674c4d7f999a2db6e4e7941c067e54e5 100644 --- a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php +++ b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php @@ -4605,10 +4605,10 @@ class ContentObjectRenderer implements LoggerAwareInterface { $rootLine = is_array($altRootLine) ? $altRootLine : $this->getTypoScriptFrontendController()->tmpl->rootLine; if (!$slideBack) { - return $rootLine[$key][$field]; + return $rootLine[$key][$field] ?? ''; } for ($a = $key; $a >= 0; $a--) { - $val = $rootLine[$a][$field]; + $val = $rootLine[$a][$field] ?? ''; if ($val) { return $val; }