From 1f803b6e3c54182cdbba2ced4aa1552fed2ba1d4 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 19 Sep 2011 16:15:36 +0000 Subject: - Fix PHP error when fetching messages index when threaded mode is enabled --- program/include/rcube_imap.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index f95f7cef4..58bad75c8 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1505,7 +1505,10 @@ class rcube_imap // use message index sort as default sorting if (!$sort_field) { if ($this->skip_deleted) { - $a_index = $this->_search_index($mailbox, 'ALL'); + $a_index = $this->conn->search($mailbox, 'ALL UNDELETED'); + // I didn't found that SEARCH should return sorted IDs + if (is_array($a_index)) + sort($a_index); } else if ($max = $this->_messagecount($mailbox)) { $a_index = range(1, $max); } -- cgit v1.2.3