Project

General

Profile

Feature #24063 ยป tslib_content_TEXT.diff

Administrator Admin, 2010-11-15 18:36

View differences:

typo3/sysext/cms/tslib/content/class.tslib_content_text.php (revision )
* @return string Output
*/
public function render($conf = array()) {
return $this->cObj->stdWrap($conf['value'], $conf);
$content = $conf['value'];
unset($conf['value']);
if(count($conf)) {
$content = $this->cObj->stdWrap($content, $conf);
}
}
return $content;
}
}
    (1-1/1)