folder admin: omit fieldset if there is only one section

pull/106/head
PhilW 11 years ago
parent 62350ba021
commit 7ba5c27466

@ -264,9 +264,12 @@ function rcmail_folder_form($attrib)
$content = rcmail_get_form_part($tab, $attrib);
}
if ($content) {
if ($content && sizeof($form) > 1) {
$out .= html::tag('fieldset', null, html::tag('legend', null, Q($tab['name'])) . $content) ."\n";
}
else {
$out .= $content ."\n";
}
}
$out .= "\n$form_end";

Loading…
Cancel
Save