From 5c52d06844779efbf4034663f5e68db10619b367 Mon Sep 17 00:00:00 2001 From: svncommit <devs@roundcube.net> Date: Sun, 22 Oct 2006 02:45:54 -0400 Subject: [PATCH] Updated Russian localization --- program/steps/mail/check_recent.inc | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/check_recent.inc b/program/steps/mail/check_recent.inc index f949eb2..5846699 100644 --- a/program/steps/mail/check_recent.inc +++ b/program/steps/mail/check_recent.inc @@ -40,7 +40,11 @@ // add new message headers to list $a_headers = array(); for ($i=$recent_count, $id=$count-$recent_count+1; $i>0; $i--, $id++) - $a_headers[] = $IMAP->get_headers($id, NULL, FALSE); + { + $header = $IMAP->get_headers($id, NULL, FALSE); + if ($header->recent) + $a_headers[] = $header; + } $commands .= rcmail_js_message_list($a_headers, TRUE); } -- Gitblit v1.9.1