diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-06 11:55:28 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-06 11:55:28 +0000 |
| commit | be12886a325afd5c7ba74031a2633e908a14fef5 (patch) | |
| tree | 466139bb45e6ded080f5d41d992d79ffeb10bc44 | |
| parent | d957958d9ef389171b908c9448a2051290db64d5 (diff) | |
- fix r3163 change (#1486340)
git-svn-id: https://svn.roundcube.net/trunk@3167 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/steps/mail/getunread.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/getunread.inc b/roundcubemail/program/steps/mail/getunread.inc index efae53f33..625e3dc68 100644 --- a/roundcubemail/program/steps/mail/getunread.inc +++ b/roundcubemail/program/steps/mail/getunread.inc @@ -29,7 +29,7 @@ if (!empty($a_folders)) foreach ($a_folders as $mbox_row) { if (!$check_all && isset($_SESSION['unseen_count'][$mbox_row]) && $mbox_row != $current) - $unseen = isset($_SESSION['unseen_count'][$mbox_row]); + $unseen = $_SESSION['unseen_count'][$mbox_row]; else $unseen = $IMAP->messagecount($mbox_row, 'UNSEEN', !isset($_SESSION['unseen_count'][$mbox_row])); |
