Index: typo3/stylesheet.css =================================================================== --- typo3/stylesheet.css (revision 6336) +++ typo3/stylesheet.css (working copy) @@ -673,13 +673,20 @@ table.typo3-usersettings td { width: 300px; } - +table.typo3-usersettings td.td-label label { + float: left; + margin-left: 3px; +} table.typo3-usersettings a.typo3-csh-link { - display: block; float: left; - margin-right: 5px; } +table.typo3-usersettings img.csh-dummy { + float: left; + vertical-align:middle; + margin-right: 4px; +} + table.typo3-usersettings td.td-label-right { padding-left: 30px; width: 50px; Index: typo3/sysext/setup/mod/index.php =================================================================== --- typo3/sysext/setup/mod/index.php (revision 6336) +++ typo3/sysext/setup/mod/index.php (working copy) @@ -506,6 +506,9 @@ $label = $this->getLabel($config['label'], $fieldName); $csh = $this->getCSH($config['csh'] ? $config['csh'] : $fieldName); + if (!$csh) { + $csh = ''; + } $type = $config['type']; $eval = $config['eval']; $class = $config['class'];