diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-09-08 17:21:08 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-09-08 17:21:54 +0200 |
commit | c489cc14797942fa8940e6451a964db875eb00a2 (patch) | |
tree | 777f3ac7561e687b5fd16d6e34e2273783f7ce1b /program/lib/Roundcube | |
parent | f50f49a0f23c3c9448762a93a340919bad0fe8f2 (diff) |
Fix call to a member function get_compressed() on a non-object
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | 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 44a79c8e6..d1d1fbf32 100644 --- a/program/lib/Roundcube/rcube_imap.php +++ b/program/lib/Roundcube/rcube_imap.php @@ -1384,7 +1384,7 @@ class rcube_imap extends rcube_storage public function index_direct($folder, $sort_field = null, $sort_order = null, $search = null) { if (!empty($search)) { - $search = $this->search_set->get_compressed(); + $search = $search->get_compressed(); } // use message index sort as default sorting |