diff --git a/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php b/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php index 80982c1a81f2c9d2d908f5cbd102bf64097092e8..93288fdd4d2049ae4d9647323dee37c4a3ebeed2 100644 --- a/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php +++ b/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php @@ -830,7 +830,7 @@ abstract class AbstractMenuContentObject $value_rec = $this->sys_page->getPage($specialValue); $kfieldSrc = ($this->conf['special.']['keywordsField.']['sourceField'] ?? false) ? $this->conf['special.']['keywordsField.']['sourceField'] : 'keywords'; // keywords. - $kw = trim($this->parent_cObj->keywords($value_rec[$kfieldSrc])); + $kw = trim($this->parent_cObj->keywords($value_rec[$kfieldSrc] ?? '')); } // *'auto', 'manual', 'tstamp' $mode = $this->conf['special.']['mode'] ?? '';