diff options
author | alecpl <alec@alec.pl> | 2008-04-11 16:53:59 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-11 16:53:59 +0000 |
commit | 6d2714b3b3660f8a4efbb9c53e00b76245c2bcc2 (patch) | |
tree | f5193b8a3130b02ffec6718a6848456e7a1a722b /program/steps/mail/check_recent.inc | |
parent | fe6b7ae748f1065a9f6ece6f0cc26594b6d208c3 (diff) |
#1484972: optimization: mark as read in one action with preview, deleted redundant quota reads
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 3e0301613..dee8ca61b 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -37,7 +37,7 @@ foreach ($a_mailboxes as $mbox_name) $OUTPUT->set_env('messagecount', $IMAP->messagecount()); $OUTPUT->command('set_unread_count', $mbox_name, $unread_count, ($mbox_name == 'INBOX')); $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text()); - $OUTPUT->command('set_quota', $IMAP->get_quota()); + $OUTPUT->command('set_quota', rcmail_quota_content($IMAP->get_quota())); // add new message headers to list $a_headers = array(); |