diff options
author | thomascube <thomas@roundcube.net> | 2007-09-19 06:29:28 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-09-19 06:29:28 +0000 |
commit | 5eee009671d773cb3ebef5beca6ad47c919ac4c7 (patch) | |
tree | d7e74e8c1523579380fb4c16710b1c88a9cd8508 /program/steps/mail/check_recent.inc | |
parent | 104ee38b205d125a002b04adb704178897bae057 (diff) |
Allow vars and PHP code in templates; improved page title; fixed #1484395
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 119d481ab..a2100f1d2 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -31,7 +31,7 @@ foreach ($a_mailboxes as $mbox_name) $unread_count = $IMAP->messagecount(NULL, 'UNSEEN', TRUE); $OUTPUT->set_env('messagecount', $count); - $OUTPUT->command('set_unread_count', $mbox_name, $unread_count); + $OUTPUT->command('set_unread_count', $mbox_name, $unread_count, true); $OUTPUT->command('set_rowcount', rcmail_get_messagecount_text()); $OUTPUT->command('set_quota', $IMAP->get_quota()); |