Index: typo3/sysext/install/mod/class.tx_install.php =================================================================== --- typo3/sysext/install/mod/class.tx_install.php (Revision 8613) +++ typo3/sysext/install/mod/class.tx_install.php (Arbeitskopie) @@ -1964,8 +1964,8 @@ $textLineSubpart = ''; $description = trim($commentArr[1][$k][$vk]); - $isTextarea = preg_match('/^string \(textarea\)/i',$description) ? TRUE : FALSE; - $doNotRender = preg_match('/^string \(exclude\)/i', $description) ? TRUE : FALSE; + $isTextarea = preg_match('/^(
)?string \(textarea\)/i',$description) ? TRUE : FALSE; + $doNotRender = preg_match('/^(
)?string \(exclude\)/i', $description) ? TRUE : FALSE; if (!is_array($value) && !$doNotRender && ($this->checkForBadString($value) || $isTextarea)) { $k2 = '['.$vk.']'; @@ -1988,7 +1988,7 @@ TRUE, FALSE ); - } elseif (preg_match('/^boolean/i',$description)) { + } elseif (preg_match('/^(
)?boolean/i',$description)) { // Get the subpart for a checkbox $booleanSubpart = t3lib_parsehtml::getSubpart($template, '###BOOLEAN###'); // Define the markers content @@ -2044,7 +2044,7 @@ ); // Define the markers content $markers = array( - 'description' => htmlspecialchars($description), + 'description' => $description, 'key' => '[' . $k . '][' . $vk . ']', 'label' => htmlspecialchars(t3lib_div::fixed_lgd_cs($value, 40)) ); Index: typo3/sysext/install/Resources/Public/Stylesheets/general.css =================================================================== --- typo3/sysext/install/Resources/Public/Stylesheets/general.css (Revision 8613) +++ typo3/sysext/install/Resources/Public/Stylesheets/general.css (Arbeitskopie) @@ -5,6 +5,14 @@ font: 62.8% Verdana, Arial, Helvetica, sans-serif; } +pre { + font-size: 1.2em; + margin: 1em 1em; +} +code { + font-size: 1.2em; +} + p, form, fieldset, h3, h4, h5, h6, dl { margin: 1em 0 1em 0; } @@ -22,6 +30,14 @@ list-style: decimal; } +dl dd { + margin-left: 1.5em; +} + +fieldset li p { + margin-top: 0; +} + h2 { margin: 2.5em 0 1.7em 0.8em; color: #585858;