From a03c98092f7bdb98347876a1a1a4716dfe46be89 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 23 Apr 2010 11:47:24 +0000 Subject: - fix IMAP errors on Settings/Folders (always call _id2uid() with mailbox set) - performance: add option to not checking MAXUID in messagecount() --- program/steps/settings/manage_folders.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/steps') diff --git a/program/steps/settings/manage_folders.inc b/program/steps/settings/manage_folders.inc index 9202777f7..54dd0bd92 100644 --- a/program/steps/settings/manage_folders.inc +++ b/program/steps/settings/manage_folders.inc @@ -291,7 +291,7 @@ function rcube_subscription_form($attrib) $table->add_row(array('id' => 'rcmrow'.$idx, 'class' => join(' ', $classes))); $table->add('name', Q($display_folder)); - $table->add('msgcount', ($folder['virtual'] ? '' : $IMAP->messagecount($folder['id']))); // XXX: Use THREADS or ALL? + $table->add('msgcount', ($folder['virtual'] ? '' : $IMAP->messagecount($folder['id'], 'ALL', false, false))); $table->add('subscribed', ($protected || $folder['virtual']) ? ($subscribed ? ' •' : ' ') : $checkbox_subscribe->show(($subscribed ? $folder_utf8 : ''), array('value' => $folder_utf8))); if ($threading_supported) { -- cgit v1.2.3