Add the copy of type from original xmlDoc in xmlCopyDoc()

A bug related to php DOMDocument:

    https://bugs.php.net/bug.php?id=80665

When copy/clone an html document, the xmlDoc->type goes from
XML_HTML_DOCUMENT_NODE to XML_DOCUMENT_NODE.
This commit is contained in:
SVGAnimate 2021-01-26 05:42:48 +00:00 committed by Nick Wellnhofer
parent 2065d34090
commit 07920b4381

1
tree.c
View File

@ -4558,6 +4558,7 @@ xmlCopyDoc(xmlDocPtr doc, int recursive) {
if (doc == NULL) return(NULL);
ret = xmlNewDoc(doc->version);
if (ret == NULL) return(NULL);
ret->type = doc->type;
if (doc->name != NULL)
ret->name = xmlMemStrdup(doc->name);
if (doc->encoding != NULL)