diff --git a/module/VuFind/src/VuFind/Controller/AbstractSearch.php b/module/VuFind/src/VuFind/Controller/AbstractSearch.php index 96b7aef1f13b0af2cd2dd63979ea559ac82bd34f..876017b21b29fe4794358f10322b612350a453e0 100644 --- a/module/VuFind/src/VuFind/Controller/AbstractSearch.php +++ b/module/VuFind/src/VuFind/Controller/AbstractSearch.php @@ -221,7 +221,8 @@ class AbstractSearch extends AbstractBase // We need to create and process an "empty results" object to // ensure that recommendation modules and templates behave // properly when displaying the error message. - $view->results = new \VuFind\Search\EmptySet\Results($params); + $view->results = $this->getSearchManager() + ->setSearchClassId('EmptySet')->getResults($params); $view->results->performAndProcessSearch(); } else { // Unexpected error -- let's throw this up to the next level.