From 6092693f47db0a0cb1a5fa67bbd533778a58f87c Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 11 Jun 2015 09:39:03 -0400 Subject: [PATCH] Fixed bug: incorrect order of operations. --- module/VuFind/src/VuFind/Search/SolrReserves/Options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Search/SolrReserves/Options.php b/module/VuFind/src/VuFind/Search/SolrReserves/Options.php index 626af887634..e342e5ade6f 100644 --- a/module/VuFind/src/VuFind/Search/SolrReserves/Options.php +++ b/module/VuFind/src/VuFind/Search/SolrReserves/Options.php @@ -47,9 +47,9 @@ class Options extends \VuFind\Search\Solr\Options */ public function __construct(\VuFind\Config\PluginManager $configLoader) { - parent::__construct($configLoader); $this->facetsIni = $this->searchIni = 'reserves'; $this->spellcheck = false; + parent::__construct($configLoader); } /** -- GitLab