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/move_del.inc | |
parent | 74cd6cced6290d43a18745d732b7bdf58f02fe3e (diff) |
- Fix handling of folders with "<>" characters in name
Diffstat (limited to 'program/steps/mail/move_del.inc')
-rw-r--r-- | program/steps/mail/move_del.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index e64c32742..3940b6db9 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -30,8 +30,8 @@ $old_pages = ceil($old_count / $IMAP->page_size); // move messages if ($RCMAIL->action=='moveto' && !empty($_POST['_uid']) && strlen($_POST['_target_mbox'])) { $count = sizeof(explode(',', ($uids = get_input_value('_uid', RCUBE_INPUT_POST)))); - $target = get_input_value('_target_mbox', RCUBE_INPUT_POST); - $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); + $target = get_input_value('_target_mbox', RCUBE_INPUT_POST, true); + $mbox = get_input_value('_mbox', RCUBE_INPUT_POST, true); $moved = $IMAP->move_message($uids, $target, $mbox); @@ -52,7 +52,7 @@ if ($RCMAIL->action=='moveto' && !empty($_POST['_uid']) && strlen($_POST['_targe // delete messages else if ($RCMAIL->action=='delete' && !empty($_POST['_uid'])) { $count = sizeof(explode(',', ($uids = get_input_value('_uid', RCUBE_INPUT_POST)))); - $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); + $mbox = get_input_value('_mbox', RCUBE_INPUT_POST, true); $del = $IMAP->delete_message($uids, $mbox); |