From cead5c727147faac362e742aa7bcecf07f68cd99 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 18 May 2006 17:24:42 -0400 Subject: [PATCH] Updated CHANGELOG --- program/steps/mail/getunread.inc | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/program/steps/mail/getunread.inc b/program/steps/mail/getunread.inc index 2602217..437e3aa 100644 --- a/program/steps/mail/getunread.inc +++ b/program/steps/mail/getunread.inc @@ -25,11 +25,10 @@ if (!empty($a_folders)) { - foreach ($a_folders as $mbox) + foreach ($a_folders as $mbox_row) { - $commands = sprintf("this.set_unread_count('%s', %d);\n", $mbox, $IMAP->messagecount($mbox, 'UNSEEN')); + $commands = sprintf("this.set_unread_count('%s', %d);\n", $mbox_row, $IMAP->messagecount($mbox_row, 'UNSEEN')); rcube_remote_response($commands, TRUE); - ob_flush(); } } -- Gitblit v1.9.1