Feature #17896 ยป 6908_capitalize.patch
typo3/sysext/cms/tslib/class.tslib_content.php (Arbeitskopie) | ||
---|---|---|
case 'lower' :
|
||
$theValue = $GLOBALS['TSFE']->csConvObj->conv_case($GLOBALS['TSFE']->renderCharset, $theValue, 'toLower');
|
||
break;
|
||
case 'capitalize':
|
||
$theValue = ucwords($theValue);
|
||
break;
|
||
}
|
||
return $theValue;
|
||
}
|