Skip to content

Commit

Permalink
Fix call to a member function get_compressed() on a non-object
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Sep 8, 2014
1 parent f50f49a commit c489cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/lib/Roundcube/rcube_imap.php
Expand Up @@ -1384,7 +1384,7 @@ public function index($folder = '', $sort_field = NULL, $sort_order = NULL,
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
Expand Down

0 comments on commit c489cc1

Please sign in to comment.