2009-09-13 Martin Kutschker <masi@typo3.org>
* Fixed bug #11943: TCEforms suggest classes lack final ?> and use round brackets around the uid
2009-09-13 Martin Kutschker <masi@typo3.org>
* Fixed bug #11943: TCEforms suggest classes lack final ?> and use round brackets around the uid
+ * Fixed bug #11945: TS objectbrowser converts labels to uppercase improperly (thanks to Christopher Stelmaszyk)
2009-09-12 Steffen Kamper <info@sk-typo3.de>
2009-09-12 Steffen Kamper <info@sk-typo3.de>
'setup' => $GLOBALS['LANG']->getLL('setup')
),
'ts_browser_toplevel_setup' => array(
'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(
),
'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'),
),
'ts_browser_const' => array(
'0' => $GLOBALS['LANG']->getLL('plainSubstitution'),
- $out = $this->pObj->sObj." <b>" . t3lib_div::strtoupper($GLOBALS['LANG']->getLL('clear')) . "</b> ";
+ $out = $this->pObj->sObj . " <b>" .
+ $GLOBALS['LANG']->csConvObj->conv_case(
+ $GLOBALS['LANG']->charSet, $GLOBALS['LANG']->getLL('clear'), 'toUpper'
+ ) . "</b> ";
$out .= '<input type="Checkbox" name="data[' . $this->pObj->sObj . '][clearValue]" value="1" />';
$out .= '<input type="Submit" name="clear_object" value="' . $GLOBALS['LANG']->getLL('clearButton') . '" />';
$theOutput .= $this->pObj->doc->spacer(20);
$out .= '<input type="Checkbox" name="data[' . $this->pObj->sObj . '][clearValue]" value="1" />';
$out .= '<input type="Submit" name="clear_object" value="' . $GLOBALS['LANG']->getLL('clearButton') . '" />';
$theOutput .= $this->pObj->doc->spacer(20);
- $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 .= '<table border="0" cellpadding="1" cellspacing="0" id="typo3-objectBrowser" width="100%">
$theOutput .= $this->pObj->doc->spacer(15);
$theOutput .= $this->pObj->doc->sectionEnd();
$theOutput .= '<table border="0" cellpadding="1" cellspacing="0" id="typo3-objectBrowser" width="100%">