Project

General

Profile

Task #51283 ยป patch_51283.diff

Bernhard Kraft, 2013-08-23 10:33

View differences:

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);
    (1-1/1)