diff options
author | alecpl <alec@alec.pl> | 2010-11-12 13:05:18 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-12 13:05:18 +0000 |
commit | b72e2f9a1745d4f733313a15ac7d170dc80bb069 (patch) | |
tree | a58da4bc3afb17b9eaaea4941dd4ffac8cdebb7a /program/steps/mail/func.inc | |
parent | 74cd6cced6290d43a18745d732b7bdf58f02fe3e (diff) |
- Fix handling of folders with "<>" characters in name
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index be5c26142..747dce529 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -46,7 +46,7 @@ if (!in_array($RCMAIL->action, $NOIMAP_ACTIONS) && !$RCMAIL->imap_connect()) { } // set imap properties and session vars -if (strlen(trim($mbox = get_input_value('_mbox', RCUBE_INPUT_GPC)))) +if (strlen(trim($mbox = get_input_value('_mbox', RCUBE_INPUT_GPC, true)))) $IMAP->set_mailbox(($_SESSION['mbox'] = $mbox)); else if ($IMAP) $_SESSION['mbox'] = $IMAP->get_mailbox_name(); |