Feature #19671 » trim.patch
typo3/sysext/cms/tslib/class.tslib_content.php (Arbeitskopie) | ||
---|---|---|
$content=$this->listNum($content,$listNumber,$conf['listNum.']['splitChar']);
|
||
}
|
||
if ($conf['trim']) { $content=trim($content); }
|
||
if ($conf['trim']) {
|
||
if ($conf['trim.']['charList']) {
|
||
$content=trim($content, $conf['trim.']['charList']);
|
||
} else {
|
||
$content=trim($content);
|
||
}
|
||
}
|
||
// Call stdWrap recursively
|
||
if ($conf['stdWrap.']) { $content=$this->stdWrap($content,$conf['stdWrap.']); }
|