diff options
author | alecpl <alec@alec.pl> | 2010-11-03 14:19:48 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-03 14:19:48 +0000 |
commit | c50d8872ced7c09dd9fcf5b3bf460c31e5b0c0ce (patch) | |
tree | 33d773910562f4a078e0276e67b85a12a835a7f5 /program/steps/mail/copy.inc | |
parent | 8f558fc624e4cef86487b9ecc8e4cdfd09cd44dc (diff) |
- Add missing confirmation/error messages on contact/group/message actions (#1486845)
- Add 'loading' message on message move/copy/delete/mark actions
Diffstat (limited to 'program/steps/mail/copy.inc')
-rw-r--r-- | program/steps/mail/copy.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/steps/mail/copy.inc b/program/steps/mail/copy.inc index b42ef392f..ba5fa723c 100644 --- a/program/steps/mail/copy.inc +++ b/program/steps/mail/copy.inc @@ -34,13 +34,16 @@ if (!empty($_POST['_uid']) && !empty($_POST['_target_mbox'])) { $mbox = get_input_value('_mbox', RCUBE_INPUT_POST); $copied = $IMAP->copy_message($uids, $target, $mbox); - + if (!$copied) { // send error message $OUTPUT->show_message('errorcopying', 'error'); $OUTPUT->send(); exit; } + else { + $OUTPUT->show_message('messagecopied', 'confirmation'); + } rcmail_send_unread_count($target, true); |