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

SAML2: IDPSSODescriptor: Fix AssertionIDRequestService parsing.

Thanks to Marco Ferrante for reporting this bug!

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3107 44740490-163a-0410-bde0-09ae8108e29a
parent c190392c
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ class SAML2_XML_md_IDPSSODescriptor extends SAML2_XML_md_SSODescriptorType { ...@@ -89,7 +89,7 @@ class SAML2_XML_md_IDPSSODescriptor extends SAML2_XML_md_SSODescriptorType {
} }
foreach (SAML2_Utils::xpQuery($xml, './saml_metadata:AssertionIDRequestService') as $ep) { foreach (SAML2_Utils::xpQuery($xml, './saml_metadata:AssertionIDRequestService') as $ep) {
$this->AssertionIDRequestService[] = new SAML2_XML_md_EndpointType($airs); $this->AssertionIDRequestService[] = new SAML2_XML_md_EndpointType($ep);
} }
$this->AttributeProfile = SAML2_Utils::extractStrings($xml, SAML2_Const::NS_MD, 'AttributeProfile'); $this->AttributeProfile = SAML2_Utils::extractStrings($xml, SAML2_Const::NS_MD, 'AttributeProfile');
......
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