X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=php5%2Fxml-template.php;h=e6a4e1909d2f0dc4153fbd644ec6797b0040587c;hb=1725768e2eaf68a1445f1aef9d95da0bf461e88b;hp=8e53452675bae110183ccc9c53ab09befc2d9a5d;hpb=016ab26637956613524017d95b1ecbf58f0d33f3;p=xml-template diff --git a/php5/xml-template.php b/php5/xml-template.php index 8e53452..e6a4e19 100644 --- a/php5/xml-template.php +++ b/php5/xml-template.php @@ -49,14 +49,13 @@ function XML_Template_process($node, $obj, $clean = 1) if (isset($attrs)) { $replace_child = 0; - foreach ($child->attributes as $attr) { - if ($attr->namespaceURI == 'http://template.sesse.net/' && $attr->name == 'id') { - $id = $attr->value; - if ($clean) { - $child->removeAttributeNode($attr); - $replace_child = 1; - } - } + $id_node = $child->getAttributeNodeNS('http://template.sesse.net/', 'id'); + if (isset($id_node)) { + $id = $id_node->value; + if ($clean) { + $child->removeAttributeNode($id_node); + $replace_child = 1; + } } # This seems to be the only way to reliably get rid of the excess @@ -139,7 +138,7 @@ function XML_Template_clean($node) while ($node->childNodes->length > 0) { $child = $node->childNodes->item(0); $node->removeChild($child); - $parent->insertBefore($child, $node); + $parent->insertBefore(own_clone_node($child, $doc), $node); } $parent->removeChild($node); } @@ -209,7 +208,7 @@ function own_clone_element($node, $doc) } # You've got to be kidding me... - $attr2->value = htmlentities($attr->value); + $attr2->value = preg_replace("/&/", "&", $attr->value); $newnode->appendChild($attr2); } }