summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/move_del.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-12-08 12:52:04 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-12-08 12:52:04 +0000
commit34d4f0dc73d6485fec5713e18eb4cbae3d65bbb9 (patch)
tree4916a5d3f6caceba7961e6bdf6cc0d3c37ffb0b1 /roundcubemail/program/steps/mail/move_del.inc
parenta7d8cc5d0dacee3f6a7f14e9c272c89d65eabfb8 (diff)
- Better support for READ-ONLY and NOPERM responses handling (#1487083)
- Add confirmation message on purge/expunge commands response - Fix CLOSE was called on unselected mailbox git-svn-id: https://svn.roundcube.net/trunk@4321 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/move_del.inc')
-rw-r--r--roundcubemail/program/steps/mail/move_del.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/move_del.inc b/roundcubemail/program/steps/mail/move_del.inc
index 06bef0dc6..2db3ec31a 100644
--- a/roundcubemail/program/steps/mail/move_del.inc
+++ b/roundcubemail/program/steps/mail/move_del.inc
@@ -39,7 +39,7 @@ if ($RCMAIL->action=='moveto' && !empty($_POST['_uid']) && strlen($_POST['_targe
// send error message
if ($_POST['_from'] != 'show')
$OUTPUT->command('list_mailbox');
- $OUTPUT->show_message('errormoving', 'error');
+ rcmail_display_server_error('errormoving');
$OUTPUT->send();
exit;
}
@@ -60,7 +60,7 @@ else if ($RCMAIL->action=='delete' && !empty($_POST['_uid'])) {
// send error message
if ($_POST['_from'] != 'show')
$OUTPUT->command('list_mailbox');
- $OUTPUT->show_message('errordeleting', 'error');
+ rcmail_display_server_error('errordeleting');
$OUTPUT->send();
exit;
}