From d2fa254d904ac16b8faba723af4f477923324e86 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sat, 29 Jun 2013 11:56:54 -0400 Subject: [PATCH] Fix messages list sorting with THREAD=REFS --- program/lib/Roundcube/rcube_imap.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php index a323a84..869fa9e 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -1336,7 +1336,7 @@ // THREAD=REFERENCES: sorting by sent date of root message // THREAD=REFS: sorting by the most recent date in each thread - if ($this->get_capability('THREAD') != 'REFS') { + if ($this->threading != 'REFS') { $sortby = $this->sort_field ? $this->sort_field : 'date'; $index = $this->index_direct($this->folder, $sortby, $this->sort_order, false); -- Gitblit v1.9.1