diff --git a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php index 1b7caca162fb56e8c0958da94e4f04a2eb92532f..6d4be137f7b23900ed9aac1bdb7f4664e1549e2e 100644 --- a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php +++ b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php @@ -3713,7 +3713,7 @@ class ContentObjectRenderer implements LoggerAwareInterface } } // out-tag - if ($currentTag[0] === $tag[0] && isset($tag['out']) && $tag['out']) { + if (isset($currentTag[0], $tag['out']) && $currentTag[0] === $tag[0] && $tag['out']) { $theName = $conf['tags.'][$tag[0]]; $theConf = $conf['tags.'][$tag[0] . '.']; // This flag indicates, that NL- (13-10-chars) should be stripped first and last.