diff options
author | Jaime Pérez Crespo <jaime.perez@uninett.no> | 2013-10-29 11:32:17 +0000 |
---|---|---|
committer | Jaime Pérez Crespo <jaime.perez@uninett.no> | 2013-10-29 11:32:17 +0000 |
commit | 44fadeae29b4ecb78498dcfe8805f294bf6b3872 (patch) | |
tree | a82a2085b45cba94294084f12f8390e6f61d7d2f /lib/SAML2/XML/md/PDPDescriptor.php | |
parent | dac8c08e69e0cd84faf1e22d484e80a8d73414e7 (diff) | |
download | simplesamlphp-44fadeae29b4ecb78498dcfe8805f294bf6b3872.zip simplesamlphp-44fadeae29b4ecb78498dcfe8805f294bf6b3872.tar.gz simplesamlphp-44fadeae29b4ecb78498dcfe8805f294bf6b3872.tar.bz2 |
Bugfix. Thanks to Boy Baukema for reporting issue #581.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3286 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SAML2/XML/md/PDPDescriptor.php')
-rw-r--r-- | lib/SAML2/XML/md/PDPDescriptor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/XML/md/PDPDescriptor.php b/lib/SAML2/XML/md/PDPDescriptor.php index 677d5f6..f09d054 100644 --- a/lib/SAML2/XML/md/PDPDescriptor.php +++ b/lib/SAML2/XML/md/PDPDescriptor.php @@ -58,7 +58,7 @@ class SAML2_XML_md_PDPDescriptor 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'); |