diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-14 09:54:57 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-14 09:54:57 +0000 |
| commit | 83935676d4f60639d63ce93ee3dd6f033bab26d3 (patch) | |
| tree | 5cdce3b8be7389db1d0f97109ec4d66856df4d7e /roundcubemail/program/steps/settings/func.inc | |
| parent | 4a0d928cb9c9de37cc806dbf4e3afc0326d5e9ad (diff) | |
- Added sections (fieldset+label) in Settings interface
git-svn-id: https://svn.roundcube.net/trunk@1300 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings/func.inc')
| -rw-r--r-- | roundcubemail/program/steps/settings/func.inc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc index 81da0a29d..502ca147e 100644 --- a/roundcubemail/program/steps/settings/func.inc +++ b/roundcubemail/program/steps/settings/func.inc @@ -40,8 +40,8 @@ function rcmail_user_prefs_form($attrib) // allow the following attributes to be added to the <table> tag $attrib_str = create_attrib_string($attrib, array('style', 'class', 'id', 'cellpadding', 'cellspacing', 'border', 'summary')); - // return the complete edit form as table - $out = "$form_start<table" . $attrib_str . ">\n\n"; + // return the complete edit form as tables + $out = "$form_start<fieldset><legend>" . Q(rcube_label('uisettings')) . "</legend>\n<table" . $attrib_str . ">\n\n"; // show language selection if (!isset($no_override['language'])) @@ -180,6 +180,8 @@ function rcmail_user_prefs_form($attrib) Q(rcube_label('previewpane')), $input_preview->show($CONFIG['preview_pane']?1:0)); } + + $out .= "</table></fieldset>\n<fieldset><legend>" . Q(rcube_label('serversettings')) . "</legend>\n<table" . $attrib_str . ">\n\n"; if (!empty($CONFIG['drafts_mbox']) && !isset($no_override['draft_autosave'])) { @@ -217,7 +219,7 @@ function rcmail_user_prefs_form($attrib) $input_expunge->show($CONFIG['logout_expunge']?1:0)); } - $out .= "\n</table>$form_end"; + $out .= "\n</table></fieldset>$form_end"; return $out; } |
