diff --git a/module/VuFind/src/VuFind/Search/Tags/Options.php b/module/VuFind/src/VuFind/Search/Tags/Options.php index 10834f068d4d514fdbb7884ddc6ee8b4e24351db..5d055078e8d92815d11e11d36db5326b7bf1d141 100644 --- a/module/VuFind/src/VuFind/Search/Tags/Options.php +++ b/module/VuFind/src/VuFind/Search/Tags/Options.php @@ -46,7 +46,8 @@ class Options extends \VuFind\Search\Base\Options public function __construct(\VuFind\Config\PluginManager $configLoader) { parent::__construct($configLoader); - $this->basicHandlers = ['tags' => 'Tag']; + $this->basicHandlers = ['tag' => 'Tag']; + $this->defaultHandler = 'tag'; $this->defaultSort = 'title'; $this->sortOptions = [ 'title' => 'sort_title', 'author' => 'sort_author', @@ -61,7 +62,7 @@ class Options extends \VuFind\Search\Base\Options */ public function getSearchAction() { - return 'tag-home'; + return 'search-results'; } /**