Skip to content
Snippets Groups Projects
Commit 68fb46c0 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Fix SingleLogoutServiceLocation config option not respected

parent e5d5c0cf
No related branches found
No related tags found
No related merge requests found
......@@ -397,7 +397,8 @@ class SP extends \SimpleSAML\Auth\Source
Constants::BINDING_SOAP,
]
);
$location = Module::getModuleURL('saml/sp/saml2-logout.php/' . $this->getAuthId());
$defaultLocation = Module::getModuleURL('saml/sp/saml2-logout.php/' . $this->getAuthId());
$location = $this->metadata->getString('SingleLogoutServiceLocation', $defaultLocation);
$endpoints = [];
foreach ($bindings as $binding) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment