diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/Solr/Response/Json/RecordCollection.php b/module/VuFindSearch/src/VuFindSearch/Backend/Solr/Response/Json/RecordCollection.php index d9158d8623420d16d79c968b13bb44d5eaea8777..371a32cde2ef5241a4b73626dde0b89440bea2ad 100644 --- a/module/VuFindSearch/src/VuFindSearch/Backend/Solr/Response/Json/RecordCollection.php +++ b/module/VuFindSearch/src/VuFindSearch/Backend/Solr/Response/Json/RecordCollection.php @@ -101,7 +101,8 @@ class RecordCollection extends AbstractRecordCollection $params = isset($this->response['responseHeader']['params']) ? $this->response['responseHeader']['params'] : array(); $sq = isset($params['spellcheck.q']) - ? $params['spellcheck.q'] : $params['q']; + ? $params['spellcheck.q'] + : (isset($params['q']) ? $params['q'] : ''); $sugg = isset($this->response['spellcheck']['suggestions']) ? $this->response['spellcheck']['suggestions'] : array(); $this->spellcheck = new Spellcheck($sugg, $sq);