diff --git a/src/web/Request.php b/src/web/Request.php index 9f5598dad47..a4f67b317eb 100644 --- a/src/web/Request.php +++ b/src/web/Request.php @@ -960,8 +960,6 @@ private function _checkRequestType() $setPasswordPath = trim($configService->getLocalized('setPasswordPath'), '/'); } - $verifyEmailPath = 'verifyemail'; - if ( ($triggerMatch = ($firstSegment == $configService->get('actionTrigger') && count($this->_segments) > 1)) || ($actionParam = $this->getParam('action')) !== null || @@ -969,7 +967,6 @@ private function _checkRequestType() $loginPath, $logoutPath, $setPasswordPath, - $verifyEmailPath ], true)) ) { $this->_isActionRequest = true; @@ -984,8 +981,6 @@ private function _checkRequestType() $this->_actionSegments = ['users', 'login']; } else if ($this->_path == $logoutPath) { $this->_actionSegments = ['users', 'logout']; - } else if ($this->_path == $verifyEmailPath) { - $this->_actionSegments = ['users', 'verify-email']; } else { $this->_actionSegments = ['users', 'set-password']; }