From 6af93407762cc98dfea35256c8644e06053a807b Mon Sep 17 00:00:00 2001 From: kcbieng <126266783+kcbieng@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:05:19 -0500 Subject: [PATCH] Update oauth.php Mismatch in the constructor parameters when instantiating the AzureAuthController class. --- sources/oauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/oauth.php b/sources/oauth.php index 19d6829d1..c8022c544 100644 --- a/sources/oauth.php +++ b/sources/oauth.php @@ -11,7 +11,7 @@ // MDP teampass.admin Goh@u939!879 // Création d'une instance du contrôleur -$azureAuth = new AzureAuthController($SETTINGS, true); +$azureAuth = new AzureAuthController($SETTINGS); // Redirection vers Azure pour l'authentification $azureAuth->redirect();