diff options
author | alecpl <alec@alec.pl> | 2010-11-04 07:41:06 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-04 07:41:06 +0000 |
commit | 1555ac6018802ed43c14c76aa26c830142c9d0b3 (patch) | |
tree | 08548729b4db387d8e8dd8cac97d762b70fe915f /program/steps | |
parent | 8738e943db45650f56b1f0adcd18004ff1f3ebfe (diff) |
- Don't show confirmation message when marking message as read using delay (preview_pane_mark_read>0)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/mark.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/mark.inc b/program/steps/mail/mark.inc index 467548161..5411e3f46 100644 --- a/program/steps/mail/mark.inc +++ b/program/steps/mail/mark.inc @@ -51,7 +51,7 @@ if (($uids = get_input_value('_uid', RCUBE_INPUT_POST)) && ($flag = get_input_va $OUTPUT->send(); exit; } - else { + else if (empty($_POST['_quiet'])) { $OUTPUT->show_message('messagemarked', 'confirmation'); } |