From 3273e6ca51091d524ebe478c50b58a8411bfb90c Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 25 Oct 2012 15:51:50 -0400
Subject: [PATCH] Fixed bug: sort was not working correctly in Solr-based
 reserves.

---
 module/VuFind/src/VuFind/Controller/SearchController.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/Controller/SearchController.php b/module/VuFind/src/VuFind/Controller/SearchController.php
index 3ebbcf1b8d0..7f5488a8d64 100644
--- a/module/VuFind/src/VuFind/Controller/SearchController.php
+++ b/module/VuFind/src/VuFind/Controller/SearchController.php
@@ -431,7 +431,12 @@ class SearchController extends AbstractSearch
     {
         $sm = $this->getSearchManager();
         $params = $sm->setSearchClassId('SolrReserves')->getParams();
-        $params->initFromRequest($this->getRequest()->getQuery());
+        $params->initFromRequest(
+            new \Zend\Stdlib\Parameters(
+                $this->getRequest()->getQuery()->toArray()
+                + $this->getRequest()->getPost()->toArray()
+            )
+        );
         $results = $sm->setSearchClassId('SolrReserves')->getResults($params);
         return $this->createViewModel(array('results' => $results));
     }
-- 
GitLab