diff options
author | Olav Morken <olav.morken@uninett.no> | 2011-10-28 08:17:33 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2011-10-28 08:17:33 +0000 |
commit | 42e307da242ff147ec95607957f4bacec9b5821a (patch) | |
tree | a7e65ef4e6051a1715749673aa5d56bb4fc42702 /lib/SAML2/XML/md | |
parent | 1a263f389b8c07742397e87749f4ceccaeafbe62 (diff) | |
download | simplesamlphp-42e307da242ff147ec95607957f4bacec9b5821a.zip simplesamlphp-42e307da242ff147ec95607957f4bacec9b5821a.tar.gz simplesamlphp-42e307da242ff147ec95607957f4bacec9b5821a.tar.bz2 |
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
Diffstat (limited to 'lib/SAML2/XML/md')
-rw-r--r-- | lib/SAML2/XML/md/Extensions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/XML/md/Extensions.php b/lib/SAML2/XML/md/Extensions.php index 0db1813..70d7d1c 100644 --- a/lib/SAML2/XML/md/Extensions.php +++ b/lib/SAML2/XML/md/Extensions.php @@ -22,7 +22,7 @@ class SAML2_XML_md_Extensions { $ret[] = new SAML2_XML_shibmd_Scope($node); } elseif ($node->namespaceURI === SAML2_XML_mdattr_EntityAttributes::NS && $node->localName === 'EntityAttributes') { $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); } else { $ret[] = new SAML2_XML_Chunk($node); |