From b6da0b76afb5697685c35b8584631294cfc7b12f Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 7 Dec 2011 10:41:15 +0000 Subject: - Remove deprecated global $IMAP variable usage (#1488148) --- program/steps/mail/getunread.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'program/steps/mail/getunread.inc') diff --git a/program/steps/mail/getunread.inc b/program/steps/mail/getunread.inc index 27ae5f747..39880b99b 100644 --- a/program/steps/mail/getunread.inc +++ b/program/steps/mail/getunread.inc @@ -19,11 +19,11 @@ */ -$a_folders = $IMAP->list_mailboxes('', '*', 'mail'); +$a_folders = $RCMAIL->imap->list_mailboxes('', '*', 'mail'); if (!empty($a_folders)) { - $current = $IMAP->get_mailbox_name(); + $current = $RCMAIL->imap->get_mailbox_name(); $inbox = ($current == 'INBOX'); $check_all = (bool)$RCMAIL->config->get('check_all_folders'); @@ -33,7 +33,7 @@ if (!empty($a_folders)) if (!$check_all && $unseen_old !== null && $mbox_row != $current) $unseen = $unseen_old; else - $unseen = $IMAP->messagecount($mbox_row, 'UNSEEN', $unseen_old === null); + $unseen = $RCMAIL->imap->messagecount($mbox_row, 'UNSEEN', $unseen_old === null); if ($unseen || $unseen_old === null) { $OUTPUT->command('set_unread_count', $mbox_row, $unseen, $inbox && $mbox_row == 'INBOX'); -- cgit v1.2.3