Browse Source

Do not use appendChild for attributes

split-manual
J. King 3 years ago
parent
commit
71726e16f7
  1. 2
      lib/DOM/Element.php

2
lib/DOM/Element.php

@ -118,7 +118,7 @@ class Element extends \DOMElement {
$this->ownerDocument->removeChild($this);
}
$a->value = $this->escapeString($value, true);
$this->appendChild($a);
$this->setAttributeNodeNS($a);
} else {
try {
parent::setAttributeNS($namespaceURI, $qualifiedName, $value);

Loading…
Cancel
Save