summaryrefslogtreecommitdiff
path: root/program/steps/mail/check_recent.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2009-03-10 08:13:26 +0000
committerthomascube <thomas@roundcube.net>2009-03-10 08:13:26 +0000
commit75a09466ac6843b9dd861976105c1fc3177cb208 (patch)
tree0316c1f000b7dd443bf080963322c929d2206e89 /program/steps/mail/check_recent.inc
parent123300749c7ae0445c121586f97f95202e3c572f (diff)
Fix r2339 for releasev0.2.2@2481v0.2.1@2348
Diffstat (limited to 'program/steps/mail/check_recent.inc')
-rw-r--r--program/steps/mail/check_recent.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/check_recent.inc b/program/steps/mail/check_recent.inc
index 438e97bdb..54e1702de 100644
--- a/program/steps/mail/check_recent.inc
+++ b/program/steps/mail/check_recent.inc
@@ -66,8 +66,8 @@ foreach ($a_mailboxes as $mbox_name) {
}
}
}
- else if ($IMAP->messagecount($mbox_name, 'UNSEEN', $check_all)) {
- $OUTPUT->command('set_unread_count', $mbox_name, $IMAP->messagecount($mbox_name, 'UNSEEN', $check_all));
+ else if ($unseen = $IMAP->messagecount($mbox_name, 'UNSEEN', $check_all)) {
+ $OUTPUT->command('set_unread_count', $mbox_name, $unseen);
}
}