summaryrefslogtreecommitdiffstats
path: root/lib/SAML2/XML
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2011-01-05 12:17:48 +0000
committerOlav Morken <olav.morken@uninett.no>2011-01-05 12:17:48 +0000
commit73cf5412848022f8db47e37663f459d9d13fe8fb (patch)
tree0cc486a6f3a1d2b253a5f87eae577ddee1723173 /lib/SAML2/XML
parent4bedd361ec6aa3791eb196213192b26e287b67a3 (diff)
downloadsimplesamlphp-73cf5412848022f8db47e37663f459d9d13fe8fb.zip
simplesamlphp-73cf5412848022f8db47e37663f459d9d13fe8fb.tar.gz
simplesamlphp-73cf5412848022f8db47e37663f459d9d13fe8fb.tar.bz2
SAML2_XML_Chunk: Properly save localName and namespaceURI attributes.
Thanks to Andjelko Horvat for finding and fixing this bug! git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2700 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SAML2/XML')
-rw-r--r--lib/SAML2/XML/Chunk.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/XML/Chunk.php b/lib/SAML2/XML/Chunk.php
index fb47928..9f614d3 100644
--- a/lib/SAML2/XML/Chunk.php
+++ b/lib/SAML2/XML/Chunk.php
@@ -98,7 +98,7 @@ class SAML2_XML_Chunk {
$this->xmlString = $this->xml->ownerDocument->saveXML($this->xml);
}
- return array('xmlString');
+ return array('xmlString', 'localName', 'namespaceURI');
}
}