Index: typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php =================================================================== --- typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php (revision 5911) +++ typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php (working copy) @@ -55,10 +55,14 @@ 'setup' => $GLOBALS['LANG']->getLL('setup') ), 'ts_browser_toplevel_setup' => array( - '0' => t3lib_div::strtoupper($GLOBALS['LANG']->getLL('all')) + '0' => $GLOBALS['LANG']->csConvObj->conv_case( + $GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('all'), 'toUpper' + ) ), 'ts_browser_toplevel_const' => array( - '0' => t3lib_div::strtoupper($GLOBALS['LANG']->getLL('all')) + '0' => $GLOBALS['LANG']->csConvObj->conv_case( + $GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('all'), 'toUpper' + ) ), 'ts_browser_const' => array( '0' => $GLOBALS['LANG']->getLL('plainSubstitution'), @@ -383,7 +387,10 @@ // clear $out = ''; - $out = $this->pObj->sObj." " . t3lib_div::strtoupper($GLOBALS['LANG']->getLL('clear')) . " "; + $out = $this->pObj->sObj . " " . + $GLOBALS['LANG']->csConvObj->conv_case( + $GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('clear'), 'toUpper' + ) . " "; $out .= ''; $out .= ''; $theOutput .= $this->pObj->doc->spacer(20); @@ -470,7 +477,11 @@ } else { $remove = ''; } - $label = $theKey ? $theKey : ($bType == 'setup' ? t3lib_div::strtoupper($GLOBALS['LANG']->getLL('setupRoot')) : t3lib_div::strtoupper($GLOBALS['LANG']->getLL('constantRoot'))); + $label = $theKey ? $theKey : + ($bType == 'setup' ? + $GLOBALS['LANG']->csConvObj->conv_case($GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('setupRoot'), 'toUpper') : + $GLOBALS['LANG']->csConvObj->conv_case($GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('constantRoot'), 'toUpper') + ); $theOutput .= $this->pObj->doc->spacer(15); $theOutput .= $this->pObj->doc->sectionEnd(); $theOutput .= '