summaryrefslogtreecommitdiffstats
path: root/lib/SAML2
diff options
context:
space:
mode:
authorJaime Pérez Crespo <jaime.perez@uninett.no>2013-10-29 11:29:54 +0000
committerJaime Pérez Crespo <jaime.perez@uninett.no>2013-10-29 11:29:54 +0000
commitdac8c08e69e0cd84faf1e22d484e80a8d73414e7 (patch)
treeb2b43e65eb0fa04b0e8fa3620648e06e17aec474 /lib/SAML2
parent74cf4820e5ccf112f0e8ed58b8d6154a2f9ed603 (diff)
downloadsimplesamlphp-dac8c08e69e0cd84faf1e22d484e80a8d73414e7.zip
simplesamlphp-dac8c08e69e0cd84faf1e22d484e80a8d73414e7.tar.gz
simplesamlphp-dac8c08e69e0cd84faf1e22d484e80a8d73414e7.tar.bz2
Bugfix. Thanks to Boy Baukema for reporting issue #580.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3285 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SAML2')
-rw-r--r--lib/SAML2/XML/md/AuthnAuthorityDescriptor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/XML/md/AuthnAuthorityDescriptor.php b/lib/SAML2/XML/md/AuthnAuthorityDescriptor.php
index 8ab4c88..52124ab 100644
--- a/lib/SAML2/XML/md/AuthnAuthorityDescriptor.php
+++ b/lib/SAML2/XML/md/AuthnAuthorityDescriptor.php
@@ -58,7 +58,7 @@ class SAML2_XML_md_AuthnAuthorityDescriptor extends SAML2_XML_md_RoleDescriptor
}
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');