Index: typo3/sysext/cms/tslib/class.tslib_content.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_content.php (Revision 9751) +++ typo3/sysext/cms/tslib/class.tslib_content.php (Arbeitskopie) @@ -6212,6 +6212,9 @@ case 'lower' : $theValue = $GLOBALS['TSFE']->csConvObj->conv_case($GLOBALS['TSFE']->renderCharset, $theValue, 'toLower'); break; + case 'capitalize': + $theValue = ucwords($theValue); + break; } return $theValue; }