From f455f85e6cbfe3792beaa0f1262d56628ee01554 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gustavo=20Andr=C3=A9=20dos=20Santos=20Lopes?= Date: Tue, 18 Jan 2011 19:56:09 +0000 Subject: [PATCH] - Fixed wrong function call in original commit to FR #39771. --- ext/dom/document.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dom/document.c b/ext/dom/document.c index 42598e3e87..45a07f2dc2 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -2318,7 +2318,7 @@ PHP_FUNCTION(dom_document_save_html) RETURN_FALSE; } - xmlNodeDump(buf, docp, node, 0, format); + htmlNodeDumpFormatOutput(buf, docp, node, 0, format); mem = (xmlChar*) xmlBufferContent(buf); if (!mem) { RETVAL_FALSE; -- 2.40.0