summaryrefslogtreecommitdiff
path: root/program/steps/mail/copy.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-04-13 17:57:37 +0200
committerAleksander Machniak <alec@alec.pl>2014-04-13 17:57:37 +0200
commit24e63e22188678407b180944f4c7bb9f494f09ee (patch)
tree32c4afc7abce7f2db1e3870fa89ab688b0560b93 /program/steps/mail/copy.inc
parenta5949991351c70eb462f779368ceb0efbeea14fb (diff)
Fix deleting/moving folders from folders with name "0", "00", etc.
Diffstat (limited to 'program/steps/mail/copy.inc')
-rw-r--r--program/steps/mail/copy.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/copy.inc b/program/steps/mail/copy.inc
index 5668f7c4b..86586d34d 100644
--- a/program/steps/mail/copy.inc
+++ b/program/steps/mail/copy.inc
@@ -29,7 +29,7 @@ if (!empty($_POST['_uid']) && strlen($_POST['_target_mbox'])) {
$target = rcube_utils::get_input_value('_target_mbox', rcube_utils::INPUT_POST, true);
foreach (rcmail::get_uids() as $mbox => $uids) {
- if ($mbox == $target)
+ if ($mbox === $target)
$copied++;
else
$copied += (int)$RCMAIL->storage->copy_message($uids, $target, $mbox);