Task #51283 ยป patch_51283.diff
typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php | ||
---|---|---|
} else {
|
||
$hooked = FALSE;
|
||
// Application defined cObjects
|
||
foreach ($this->cObjHookObjectsArr as $cObjName => $hookObj) {
|
||
if ($name === $cObjName && method_exists($hookObj, 'cObjGetSingleExt')) {
|
||
$content .= $hookObj->cObjGetSingleExt($name, $conf, $TSkey, $this);
|
||
$hooked = TRUE;
|
||
}
|
||
if (($hookObj = $this->cObjHookObjectsArr[$name]) && method_exists($hookObj, 'cObjGetSingleExt')) {
|
||
$content .= $hookObj->cObjGetSingleExt($name, $conf, $TSkey, $this);
|
||
$hooked = TRUE;
|
||
}
|
||
if (!$hooked) {
|
||
$contentObject = $this->getContentObject($name);
|