summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/copy.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-11-12 13:05:18 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-11-12 13:05:18 +0000
commit4581ff9118521aa2ed59b3096d75c87b929ab1dc (patch)
tree0bea149090129e2b1fd3bef4685e1641e304a7b6 /roundcubemail/program/steps/mail/copy.inc
parent7f3f42380c06e248bd314b67d0eaad54c21884ba (diff)
- Fix handling of folders with "<>" characters in name
git-svn-id: https://svn.roundcube.net/trunk@4219 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/copy.inc')
-rw-r--r--roundcubemail/program/steps/mail/copy.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/copy.inc b/roundcubemail/program/steps/mail/copy.inc
index 82a1ed4a7..4cd51d816 100644
--- a/roundcubemail/program/steps/mail/copy.inc
+++ b/roundcubemail/program/steps/mail/copy.inc
@@ -26,8 +26,8 @@ if (!$OUTPUT->ajax_call)
// move messages
if (!empty($_POST['_uid']) && !empty($_POST['_target_mbox'])) {
$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);
$copied = $IMAP->copy_message($uids, $target, $mbox);