diff options
author | alecpl <alec@alec.pl> | 2011-09-20 19:20:29 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-20 19:20:29 +0000 |
commit | f3ec778c65a86ebd0f440d2cf1e8cba96f52370b (patch) | |
tree | 5015f683d4890f9f762b84fb3d27f39b9f0fb2ff /program | |
parent | e99b3f2e6e83c38d959e52e09fd833ec90fd39b2 (diff) |
- Fix sorting of messages on servers without SORT and THREAD command
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_imap.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 03dc90a0c..398803343 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -917,7 +917,6 @@ class rcube_imap $msg_index = array_keys($msg_index); list($begin, $end) = $this->_get_message_range(count($msg_index), $page); $msg_index = array_slice($msg_index, $begin, $end-$begin); - $is_uid = true; if ($slice) $msg_index = array_slice($msg_index, ($this->sort_order == 'DESC' ? 0 : -$slice), $slice); |