Bug #23913 ยป 16217_tslib_content.diff
typo3/sysext/cms/tslib/class.tslib_content.php (revision ) | ||
---|---|---|
|
||
// execute each funtion in the predefined order
|
||
foreach ($sortedConf as $stdWrapName => $enabled) {
|
||
|
||
// eliminate the second key of a pair 'key'|'key.' to make sure functions get called only once and check if rendering has been stopped
|
||
if (!$isExecuted[$stdWrapName] && !$this->stopRendering[$this->stdWrapRecursionLevel]) {
|
||
$functionName = rtrim($stdWrapName, '.');
|
||
... | ... | |
);
|
||
}
|
||
}
|
||
}
|
||
|
||
unset($this->stopRendering[$this->stdWrapRecursionLevel]);
|
||
$this->stdWrapRecursionLevel--;
|
||
unset($this->stopRendering[$this->stdWrapRecursionLevel]);
|
||
$this->stdWrapRecursionLevel--;
|
||
|
||
}
|
||
}
|
||
}
|
||
return $content;
|
||
}
|
||
|