Skip to content
Snippets Groups Projects
Commit b2474de4 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Supress warning on absent NameIDFormat

parent 0da49503
No related branches found
No related tags found
No related merge requests found
...@@ -1194,17 +1194,17 @@ class SAML2 ...@@ -1194,17 +1194,17 @@ class SAML2
$a->setAttributes($attributes); $a->setAttributes($attributes);
} }
$nameIdFormat = null;
// generate the NameID for the assertion // generate the NameID for the assertion
if (isset($state['saml:NameIDFormat'])) { if (isset($state['saml:NameIDFormat'])) {
$nameIdFormat = $state['saml:NameIDFormat']; $nameIdFormat = $state['saml:NameIDFormat'];
} else {
$nameIdFormat = null;
} }
if ($nameIdFormat === null || !isset($state['saml:NameID'][$nameIdFormat])) { if ($nameIdFormat === null || !isset($state['saml:NameID'][$nameIdFormat])) {
// either not set in request, or not set to a format we supply. Fall back to old generation method // either not set in request, or not set to a format we supply. Fall back to old generation method
$nameIdFormat = current($spMetadata->getArrayizeString('NameIDFormat', [])); $nameIdFormat = current($spMetadata->getArrayizeString('NameIDFormat', []));
if ($nameIdFormat === null) { if ($nameIdFormat === false) {
$nameIdFormat = current($idpMetadata->getArrayizeString('NameIDFormat', [\SAML2\Constants::NAMEID_TRANSIENT])); $nameIdFormat = current($idpMetadata->getArrayizeString('NameIDFormat', [\SAML2\Constants::NAMEID_TRANSIENT]));
} }
} }
......
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