From 00f68faf65b62ffddcdf024233f37977000180e1 Mon Sep 17 00:00:00 2001 From: Robert Lange <robert.lange@uni-leipzig.de> Date: Thu, 8 Oct 2020 16:01:32 +0200 Subject: [PATCH] refs #18482 [finc] add missing import for ForbiddenException and ListPermissionException used in MyListAction --- module/finc/src/finc/Controller/MyResearchController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/finc/src/finc/Controller/MyResearchController.php b/module/finc/src/finc/Controller/MyResearchController.php index cb8dd23b4fc..9fadc523e76 100644 --- a/module/finc/src/finc/Controller/MyResearchController.php +++ b/module/finc/src/finc/Controller/MyResearchController.php @@ -27,9 +27,10 @@ */ namespace finc\Controller; +use VuFind\Exception\Forbidden as ForbiddenException; +use VuFind\Exception\ListPermission as ListPermissionException; use VuFind\Search\RecommendListener; use Zend\Log\LoggerAwareInterface as LoggerAwareInterface; -use Zend\Mvc\Controller\Plugin\Url; use Zend\Mvc\MvcEvent as MvcEvent; /** -- GitLab