Feature #23921 ยป tslib_content_HTML.diff
typo3/sysext/cms/tslib/content/class.tslib_content_html.php (revision ) | ||
---|---|---|
* @return string Output
|
||
*/
|
||
public function render($conf = array()) {
|
||
return $this->cObj->stdWrap($conf['value'], $conf['value.']);
|
||
|
||
$theValue = $conf['value'];
|
||
|
||
if (isset($conf['value.'])) {
|
||
$theValue = $this->cObj->stdWrap($theValue, $conf['value.']);
|
||
}
|
||
}
|
||
|
||
if (isset($conf['stdWrap.'])) {
|
||
$theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
|
||
}
|
||
}
|
||
|
||
return $theValue;
|
||
|
||
}
|
||
|
||
}
|
||
|
||
|
||
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['tslib/content/class.tslib_content_html.php']) {
|
||
include_once ($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['tslib/content/class.tslib_content_html.php']);
|
||
}
|