diff options
author | alecpl <alec@alec.pl> | 2009-06-11 13:35:03 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-11 13:35:03 +0000 |
commit | 011b02e75b6fca2a953971fd1bee3135f283b8cb (patch) | |
tree | 01ead19a1374eb298fed389e63010a573cea72a4 /program/steps/mail/mark.inc | |
parent | cd9a03685669a983167e8f5093e5b56e25923d54 (diff) |
- speed up: don't count UNSEEN if mailbox is empty
Diffstat (limited to 'program/steps/mail/mark.inc')
-rw-r--r-- | program/steps/mail/mark.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/steps/mail/mark.inc b/program/steps/mail/mark.inc index 58a6f79df..6a8a3ca90 100644 --- a/program/steps/mail/mark.inc +++ b/program/steps/mail/mark.inc @@ -91,9 +91,8 @@ if (($uids = get_input_value('_uid', RCUBE_INPUT_POST)) && ($flag = get_input_va // update mailboxlist $mbox = $IMAP->get_mailbox_name(); - $OUTPUT->command('set_unread_count', $mbox, $IMAP->messagecount($mbox, 'UNSEEN'), ($mbox == 'INBOX')); - -// $OUTPUT->command('set_quota', rcmail_quota_content($IMAP->get_quota())); + $unseen_count = $msg_count ? $IMAP->messagecount($mbox, 'UNSEEN') : 0; + $OUTPUT->command('set_unread_count', $mbox, $unseen_count, ($mbox == 'INBOX')); $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($msg_count)); // add new rows from next page (if any) |