summaryrefslogtreecommitdiff
path: root/program/steps/mail/copy.inc
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-04-07 09:53:46 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-04-07 09:53:46 +0200
commit66536974fe12a02ca5ffcec4354bf5113282a0cc (patch)
tree034b848ec971008eab1003a2a9a401fb7020a517 /program/steps/mail/copy.inc
parentc77a8497e7c4b04dd881e55341c779f6fe5ffa34 (diff)
parente3857bb6c2a2f9a4331a72b0bd74e0d70ee8a8a1 (diff)
Merge branch 'dev-multi-folder-search'
Diffstat (limited to 'program/steps/mail/copy.inc')
-rw-r--r--program/steps/mail/copy.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/copy.inc b/program/steps/mail/copy.inc
index a392f309f..0f7b1a03a 100644
--- a/program/steps/mail/copy.inc
+++ b/program/steps/mail/copy.inc
@@ -26,11 +26,11 @@ if (!$OUTPUT->ajax_call) {
// move messages
if (!empty($_POST['_uid']) && strlen($_POST['_target_mbox'])) {
- $uids = rcube_utils::get_input_value('_uid', rcube_utils::INPUT_POST);
$target = rcube_utils::get_input_value('_target_mbox', rcube_utils::INPUT_POST, true);
- $mbox = rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_POST, true);
- $copied = $RCMAIL->storage->copy_message($uids, $target, $mbox);
+ foreach (rcmail_get_uids() as $mbox => $uids) {
+ $copied += (int)$RCMAIL->storage->copy_message($uids, $target, $mbox);
+ }
if (!$copied) {
// send error message