From e2dfb5ebadbbe4c404e4815d5d32527aa1e89d9b Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 28 Dec 2011 09:26:19 +0000 Subject: - Fix handling of INBOX's subfolders in special folders config (#1488279) --- program/steps/settings/func.inc | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'program/steps/settings/func.inc') diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index ac55acb3a..f4517ccaa 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -704,8 +704,15 @@ function rcmail_user_prefs($current=null) // load folders list only when needed if ($current) { - $select = rcmail_mailbox_select(array('noselection' => '---', 'realnames' => true, - 'maxlength' => 30, 'exceptions' => array('INBOX'), 'folder_filter' => 'mail', 'folder_rights' => 'w')); + $select = rcmail_mailbox_select(array( + 'noselection' => '---', + 'realnames' => true, + 'maxlength' => 30, + 'folder_filter' => 'mail', + 'folder_rights' => 'w', + // #1486114, #1488279 + 'onchange' => "if ($(this).val() == 'INBOX') $(this).val('')", + )); } else // dummy select $select = new html_select(); -- cgit v1.2.3