Loading src/UnicaenAuthentification/Controller/AuthController.php +1 −1 Original line number Diff line number Diff line Loading @@ -202,7 +202,7 @@ class AuthController extends AbstractActionController // un type d'auth peut être demandé dans l'URL de redirection if ($redirect = $this->getRequestedRedirect()) { parse_str(parse_url(urldecode($redirect), PHP_URL_QUERY), $queryParams); parse_str(parse_url(urldecode($redirect), PHP_URL_QUERY) ?? '', $queryParams); if (isset($queryParams[self::AUTH_TYPE_QUERY_PARAM])) { $requestedType = $queryParams[self::AUTH_TYPE_QUERY_PARAM]; } Loading Loading
src/UnicaenAuthentification/Controller/AuthController.php +1 −1 Original line number Diff line number Diff line Loading @@ -202,7 +202,7 @@ class AuthController extends AbstractActionController // un type d'auth peut être demandé dans l'URL de redirection if ($redirect = $this->getRequestedRedirect()) { parse_str(parse_url(urldecode($redirect), PHP_URL_QUERY), $queryParams); parse_str(parse_url(urldecode($redirect), PHP_URL_QUERY) ?? '', $queryParams); if (isset($queryParams[self::AUTH_TYPE_QUERY_PARAM])) { $requestedType = $queryParams[self::AUTH_TYPE_QUERY_PARAM]; } Loading