diff options
author | alecpl <alec@alec.pl> | 2011-09-22 07:49:33 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-22 07:49:33 +0000 |
commit | bba25299f8d1569f560fc66f82837c95145ee121 (patch) | |
tree | 67106f791d135c37891a428545fe4c050b924874 /program/steps/mail/check_recent.inc | |
parent | 48a06551da5625830b1c5cd901af816e26ef489b (diff) |
- Fix bug where after delete message rows can be added to the list of another folder (#1487752)
Diffstat (limited to 'program/steps/mail/check_recent.inc')
-rw-r--r-- | program/steps/mail/check_recent.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/check_recent.inc b/program/steps/mail/check_recent.inc index c7d607cf9..e22cccca5 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -81,7 +81,7 @@ foreach ($a_mailboxes as $mbox_name) { $OUTPUT->set_env('messagecount', $all_count); $OUTPUT->set_env('pagecount', ceil($all_count/$IMAP->page_size)); - $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($all_count)); + $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($all_count), $mbox_name); $OUTPUT->set_env('current_page', $all_count ? $IMAP->list_page : 1); // remove old rows (and clear selection if new list is empty) |