Index: typo3/stylesheet.css =================================================================== --- typo3/stylesheet.css (revision 6336) +++ typo3/stylesheet.css (working copy) @@ -680,6 +680,11 @@ margin-right: 5px; } +table.typo3-usersettings img.csh-dummy { + margin-right: 7px; + vertical-align:middle; +} + 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'];