Skip to content
Snippets Groups Projects
Commit 42e307da authored by Olav Morken's avatar Olav Morken
Browse files

SAML2_XML_md_Extensions: Fix namespaceURL => namespaceURI.

Thanks to Georg Gollmann for reporting this bug.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2963 44740490-163a-0410-bde0-09ae8108e29a
parent 1a263f38
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ class SAML2_XML_md_Extensions { ...@@ -22,7 +22,7 @@ class SAML2_XML_md_Extensions {
$ret[] = new SAML2_XML_shibmd_Scope($node); $ret[] = new SAML2_XML_shibmd_Scope($node);
} elseif ($node->namespaceURI === SAML2_XML_mdattr_EntityAttributes::NS && $node->localName === 'EntityAttributes') { } elseif ($node->namespaceURI === SAML2_XML_mdattr_EntityAttributes::NS && $node->localName === 'EntityAttributes') {
$ret[] = new SAML2_XML_mdattr_EntityAttributes($node); $ret[] = new SAML2_XML_mdattr_EntityAttributes($node);
} elseif ($node->namespaceURL === SAML2_XML_mdrpi_Common::NS_MDRPI && $node->localName === 'PublicationInfo') { } elseif ($node->namespaceURI === SAML2_XML_mdrpi_Common::NS_MDRPI && $node->localName === 'PublicationInfo') {
$ret[] = new SAML2_XML_mdrpi_PublicationInfo($node); $ret[] = new SAML2_XML_mdrpi_PublicationInfo($node);
} else { } else {
$ret[] = new SAML2_XML_Chunk($node); $ret[] = new SAML2_XML_Chunk($node);
......
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