diff --git a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php index cd1f8cf5961a15126dc2f92b8de15b90d08107ae..2aa654c7dab8ccd6cb7a8a3d5c510acb4b39b78c 100644 --- a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php +++ b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php @@ -3930,7 +3930,7 @@ class ContentObjectRenderer implements LoggerAwareInterface } // Search for tags to process in current data and // call this method recursively if found - if (strpos($data, '<') !== false) { + if (strpos($data, '<') !== false && isset($conf['tags.']) && is_array($conf['tags.'])) { foreach ($conf['tags.'] as $tag => $tagConfig) { if (strpos($data, '<' . $tag) !== false) { $data = $this->_parseFunc($data, $conf);