From c6427797b7b54716a8555fa5acef817a7ea3cdfc Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 3 May 2010 18:27:38 +0000 Subject: - fix unseen messages counter after unseen message preview --- program/steps/mail/show.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'program/steps/mail') diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 10de46a36..82af4780f 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -226,8 +226,12 @@ else // mark message as read -if ($MESSAGE && $MESSAGE->headers && !$MESSAGE->headers->seen && ($RCMAIL->action == 'show' || ($RCMAIL->action == 'preview' && intval($CONFIG['preview_pane_mark_read']) == 0))) - $IMAP->set_flag($MESSAGE->uid, 'SEEN'); +if ($MESSAGE && $MESSAGE->headers && !$MESSAGE->headers->seen && + ($RCMAIL->action == 'show' || ($RCMAIL->action == 'preview' && intval($CONFIG['preview_pane_mark_read']) == 0))) +{ + if ($IMAP->set_flag($MESSAGE->uid, 'SEEN') && $_SESSION['unseen_count'][$mbox_name]) + $_SESSION['unseen_count'][$mbox_name] -= 1; +} exit; -- cgit v1.2.3