Project

General

Profile

Bug #17944 » 0007029.patch

Administrator Admin, 2008-02-04 12:59

View differences:

typo3/sysext/cms/tslib/class.tslib_content.php (Arbeitskopie)
$classObj = new $cls;
if (method_exists($classObj, $parts[1])) {
$classObj->cObj = &$this;
$content = call_user_method($parts[1], $classObj, $content, $conf);
$content = call_user_func_array(array($classObj, $parts[1]), array($content, $conf));
} else {
$GLOBALS['TT']->setTSlogMessage('Method "'.$parts[1].'" did not exist in class "'.$cls.'"',3);
}
(2-2/2)