diff options
Diffstat (limited to 'program/steps/settings/edit_prefs.inc')
-rw-r--r-- | program/steps/settings/edit_prefs.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/program/steps/settings/edit_prefs.inc b/program/steps/settings/edit_prefs.inc index 6e03b0808..d0abb2843 100644 --- a/program/steps/settings/edit_prefs.inc +++ b/program/steps/settings/edit_prefs.inc @@ -51,8 +51,13 @@ function rcmail_user_prefs_form($attrib) if ($option['advanced']) $table->set_row_attribs('advanced'); - $table->add('title', $option['title']); - $table->add(null, $option['content']); + if (isset($option['title'])) { + $table->add('title', $option['title']); + $table->add(null, $option['content']); + } + else { + $table->add(array('colspan' => 2), $option['content']); + } } $out .= html::tag('fieldset', null, html::tag('legend', null, $block['name']) . $table->show($attrib)); |