From c26b398d5603b7d3345b02b887d545cc10ac0093 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 5 Nov 2010 12:19:12 +0000 Subject: - Fix mailbox status checking when skip_deleted and threading are enabled --- program/include/rcube_imap.php | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'program/include') diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 17ba91c03..aa6521af8 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -547,10 +547,12 @@ class rcube_imap $a_mailbox_cache[$mailbox] = array(); if ($mode == 'THREADS') { - $count = $this->_threadcount($mailbox, $msg_count); + $res = $this->_threadcount($mailbox, $msg_count); + $count = $res['count']; + if ($status) { - $this->set_folder_stats($mailbox, 'cnt', $msg_count); - $this->set_folder_stats($mailbox, 'maxuid', $msg_count ? $this->_id2uid($msg_count, $mailbox) : 0); + $this->set_folder_stats($mailbox, 'cnt', $res['msgcount']); + $this->set_folder_stats($mailbox, 'maxuid', $res['maxuid'] ? $this->_id2uid($res['maxuid'], $mailbox) : 0); } } // RECENT count is fetched a bit different @@ -618,25 +620,33 @@ class rcube_imap * Private method for getting nr of threads * * @param string $mailbox Folder name - * @param int $msg_count Number of messages in the folder + * + * @returns array Array containing items: 'count' - threads count, + * 'msgcount' = messages count, 'maxuid' = max. UID in the set * @access private - * @see rcube_imap::messagecount() */ - private function _threadcount($mailbox, &$msg_count) + private function _threadcount($mailbox) { - if (!empty($this->icache['threads'])) { - $msg_count = count($this->icache['threads']['depth']); - return count($this->icache['threads']['tree']); - } + $result = array(); - if (is_array($result = $this->_fetch_threads($mailbox))) { - $thread_tree = array_shift($result); - $msg_count = count($result[0]); + if (!empty($this->icache['threads'])) { + $result = array( + 'count' => count($this->icache['threads']['tree']), + 'msgcount' => count($this->icache['threads']['depth']), + 'maxuid' => max(array_keys($this->icache['threads']['depth'])), + ); } - + else if (is_array($result = $this->_fetch_threads($mailbox))) { // list ($thread_tree, $msg_depth, $has_children) = $result; // $this->update_thread_cache($mailbox, $thread_tree, $msg_depth, $has_children); - return count($thread_tree); + $result = array( + 'count' => count($result[0]), + 'msgcount' => count($result[1]), + 'maxuid' => max(array_keys($result[1])), + ); + } + + return $result; } -- cgit v1.2.3