diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-24 10:26:35 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-24 10:26:35 +0000 |
| commit | c7de0310a4d92eaf512fdac73472b8b584734e2c (patch) | |
| tree | d4767ab2b55869517fb4ad1655e5ed9924f5fe0f /roundcubemail/program/steps/mail/func.inc | |
| parent | 3db1079f66d13bdd0f1e9a3e561d3548d8ed1689 (diff) | |
- Mark (with different color) folders with recent messages (#1486234)
git-svn-id: https://svn.roundcube.net/trunk@5483 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/func.inc')
| -rw-r--r-- | roundcubemail/program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index 8407b06cd..2d25fe31b 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/program/steps/mail/func.inc @@ -472,7 +472,7 @@ function rcmail_get_mailbox_name_text() } -function rcmail_send_unread_count($mbox_name, $force=false, $count=null) +function rcmail_send_unread_count($mbox_name, $force=false, $count=null, $mark='') { global $RCMAIL; @@ -484,7 +484,7 @@ function rcmail_send_unread_count($mbox_name, $force=false, $count=null) $unseen = $count; if ($unseen != $old_unseen || ($mbox_name == 'INBOX')) - $RCMAIL->output->command('set_unread_count', $mbox_name, $unseen, ($mbox_name == 'INBOX')); + $RCMAIL->output->command('set_unread_count', $mbox_name, $unseen, ($mbox_name == 'INBOX'), $mark); rcmail_set_unseen_count($mbox_name, $unseen); |
