summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/settings/func.inc
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-07-31 21:30:25 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-07-31 21:30:25 +0000
commit72dbbac60e774dbfa11bf830ff6a1667a160fbc8 (patch)
tree575cce1f19c1baeb97ffd21715379d991a5b927e /roundcubemail/program/steps/settings/func.inc
parent5da04b520be4f10e4330f59a570c24efde1d071d (diff)
Show real names in folder drop-down + rebuild default_imap_folders property when saving prefs
git-svn-id: https://svn.roundcube.net/trunk@1622 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings/func.inc')
-rw-r--r--roundcubemail/program/steps/settings/func.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc
index 1b4481881..5b6e11308 100644
--- a/roundcubemail/program/steps/settings/func.inc
+++ b/roundcubemail/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));