From fad3735cbdca03b15ff54681ae44055365d34260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20P=C3=A9rez=20Crespo?= <jaime.perez@uninett.no> Date: Tue, 29 Oct 2013 11:34:46 +0000 Subject: [PATCH] Bugfix. Thanks to Boy Baukema for reporting issue #579. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3287 44740490-163a-0410-bde0-09ae8108e29a --- lib/SAML2/XML/md/AttributeAuthorityDescriptor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SAML2/XML/md/AttributeAuthorityDescriptor.php b/lib/SAML2/XML/md/AttributeAuthorityDescriptor.php index 8babb283a..68eefee68 100644 --- a/lib/SAML2/XML/md/AttributeAuthorityDescriptor.php +++ b/lib/SAML2/XML/md/AttributeAuthorityDescriptor.php @@ -78,7 +78,7 @@ class SAML2_XML_md_AttributeAuthorityDescriptor extends SAML2_XML_md_RoleDescrip } 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->NameIDFormat = SAML2_Utils::extractStrings($xml, SAML2_Const::NS_MD, 'NameIDFormat'); -- GitLab