From 44b0dd0dd92b0b050adf0f4a206f93c84079e877 Mon Sep 17 00:00:00 2001 From: Guilherme Francisco Date: Thu, 2 Nov 2023 08:45:40 +0000 Subject: [PATCH] Update api/src/Authentication/Type/OIDC.php Co-authored-by: Mark W <24956497+ndg63276@users.noreply.github.com> --- api/src/Authentication/Type/OIDC.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Authentication/Type/OIDC.php b/api/src/Authentication/Type/OIDC.php index e09442a46..5ea92dcd2 100644 --- a/api/src/Authentication/Type/OIDC.php +++ b/api/src/Authentication/Type/OIDC.php @@ -11,7 +11,7 @@ class OIDC extends AuthenticationParent implements AuthenticationInterface private $providerConfig = array(); private function getEndpoints() { - if (empty($providerConfig)) { + if (empty($this->providerConfig)) { global $sso_url, $oidc_client_id, $oidc_client_secret; $ch = curl_init();