From 4202076a7fe29efeabf0fb413bc5eb2a969755ba Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Tue, 4 Aug 2009 11:05:24 +0000 Subject: [PATCH] SAML2: Support XML attribute values. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1625 44740490-163a-0410-bde0-09ae8108e29a --- lib/SAML2/Assertion.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/SAML2/Assertion.php b/lib/SAML2/Assertion.php index 0fc0dbc91..4cc24573c 100644 --- a/lib/SAML2/Assertion.php +++ b/lib/SAML2/Assertion.php @@ -1065,7 +1065,15 @@ class SAML2_Assertion implements SAML2_SignedElement { if ($type !== NULL) { $attributeValue->setAttributeNS(SAML2_Const::NS_XSI, 'xsi:type', $type); } - $attributeValue->appendChild($document->createTextNode($value)); + + if ($value instanceof DOMNodeList) { + for ($i = 0; $i < $value->length; $i++) { + $node = $document->importNode($value->item($i), TRUE); + $attributeValue->appendChild($node); + } + } else { + $attributeValue->appendChild($document->createTextNode($value)); + } } } } -- GitLab