summaryrefslogtreecommitdiff
path: root/program/steps/settings/func.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-07-31 21:30:25 +0000
committerthomascube <thomas@roundcube.net>2008-07-31 21:30:25 +0000
commit64f20dae0cdd3a53114053e3520eb30b71bfa42c (patch)
tree1ad62d1eef2712d4dc7e544b2b38687a3f7c1bd3 /program/steps/settings/func.inc
parentfaf8766fd2a34ad1eaf1545bab659ab459c074ad (diff)
Show real names in folder drop-down + rebuild default_imap_folders property when saving prefs
Diffstat (limited to 'program/steps/settings/func.inc')
-rw-r--r--program/steps/settings/func.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index 1b4481881..5b6e11308 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -227,9 +227,9 @@ function rcmail_user_prefs_form($attrib)
$out .= html::tag('fieldset', null, html::tag('legend', null, Q(rcube_label('messagescomposition'))) . $table->show($attrib));
// Configure special folders
- if (!isset($no_override['folders'])) {
+ if (!isset($no_override['default_imap_folders'])) {
$RCMAIL->imap_init(true);
- $select = rcmail_mailbox_select(array('noselection' => '---'));
+ $select = rcmail_mailbox_select(array('noselection' => '---', 'realnames' => true));
$table = new html_table(array('cols' => 2));