sort by author then title when getting books

This commit is contained in:
Gilles Crettenand
2015-06-05 16:18:31 +02:00
parent f2bbf7093e
commit d8fbeda202

View File

@@ -125,6 +125,8 @@ class BookSearch
$bs = new static();
$bs->addOrQuery($codes, $field);
$bs->addSortField('author', \SolrQuery::ORDER_ASC);
$bs->addSortField('title', \SolrQuery::ORDER_ASC);
$results = $bs->getResults(0, $count);
return $results['books'];
}