From b0fedc9d580d04ffa236b038c069e1235be7104c Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 16 Jul 2014 14:05:48 -0400 Subject: [PATCH] Block logged in users from creating accounts. - Eliminates some follow-up problems in some edge cases. --- module/VuFind/src/VuFind/Controller/MyResearchController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php index 233e5ef0ae6..6339f262a29 100644 --- a/module/VuFind/src/VuFind/Controller/MyResearchController.php +++ b/module/VuFind/src/VuFind/Controller/MyResearchController.php @@ -134,6 +134,10 @@ class MyResearchController extends AbstractBase */ public function accountAction() { + // If the user is already logged in, don't let them create an account: + if ($this->getAuthManager()->isLoggedIn()) { + return $this->redirect()->toRoute('myresearch-home'); + } // if the current auth class proxies others, we'll get the proxied // auth method as a querystring parameter. $method = trim($this->params()->fromQuery('auth_method')); -- GitLab