From 89c25f18f9b3f7ae5abd03183db901cd57b2fba0 Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tim.dijen@minbzk.nl> Date: Tue, 9 Feb 2021 13:30:56 +0100 Subject: [PATCH] Fix unresolvable class --- www/saml2/idp/ArtifactResolutionService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/saml2/idp/ArtifactResolutionService.php b/www/saml2/idp/ArtifactResolutionService.php index d0e1e05d6..162937c83 100644 --- a/www/saml2/idp/ArtifactResolutionService.php +++ b/www/saml2/idp/ArtifactResolutionService.php @@ -11,7 +11,7 @@ require_once('../../_include.php'); $config = \SimpleSAML\Configuration::getInstance(); -if (!$config->getBoolean('enable.saml20-idp', false) || !Module::isModuleEnabled('saml')) { +if (!$config->getBoolean('enable.saml20-idp', false) || !\SimpleSAML\Module::isModuleEnabled('saml')) { throw new \SimpleSAML\Error\Error('NOACCESS'); } -- GitLab