From df8c4fe38fad4ac802a6283bc142bbe108501b74 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 12 Jun 2018 13:14:50 -0400 Subject: [PATCH] Fix bug: wrong parent method called. --- module/VuFind/src/VuFind/Controller/TagController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Controller/TagController.php b/module/VuFind/src/VuFind/Controller/TagController.php index 5866d0c8b07..e23e0b9390b 100644 --- a/module/VuFind/src/VuFind/Controller/TagController.php +++ b/module/VuFind/src/VuFind/Controller/TagController.php @@ -62,6 +62,6 @@ class TagController extends AbstractSearch if (!$this->tagsEnabled()) { throw new ForbiddenException('Tags disabled'); } - return parent::homeAction(); + return parent::resultsAction(); } } -- GitLab