From: Gustavo André dos Santos Lopes Date: Tue, 18 Jan 2011 19:56:09 +0000 (+0000) Subject: - Fixed wrong function call in original commit to FR #39771. X-Git-Tag: php-5.4.0alpha1~191^2~356 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f455f85e6cbfe3792beaa0f1262d56628ee01554;p=php - Fixed wrong function call in original commit to FR #39771. --- 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;