diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-10 08:41:34 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-10 08:41:34 +0200 |
commit | eddaf0b5f68c9863181b62db33bc468d38071e8a (patch) | |
tree | 16028e6f44573377ba901f097d64e97b1b79f6c2 /program/steps/mail/move_del.inc | |
parent | 70c0d256841aa736a3f4a74a345ec4b0dfcdad78 (diff) | |
parent | 39ca69b0072a618c0ccc112a016a44970c6667f7 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/steps/mail/move_del.inc')
-rw-r--r-- | program/steps/mail/move_del.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/program/steps/mail/move_del.inc b/program/steps/mail/move_del.inc index ae367b4f7..9c1acd5d2 100644 --- a/program/steps/mail/move_del.inc +++ b/program/steps/mail/move_del.inc @@ -60,7 +60,13 @@ if ($RCMAIL->action == 'move' && !empty($_POST['_uid']) && strlen($_POST['_targe $OUTPUT->show_message('messagemoved', 'confirmation'); } - $addrows = true; + if (!empty($_POST['_refresh'])) { + // FIXME: send updated message rows instead of releading the entire list + $OUTPUT->command('refresh_list'); + } + else { + $addrows = true; + } } // delete messages else if ($RCMAIL->action=='delete' && !empty($_POST['_uid'])) { |