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.3.6RC1~104 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cdcdb1b1e90e195a511fb7d4a8f934ddb48dee4;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 aeca66fe19..684bb3c83f 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -1821,7 +1821,7 @@ PHP_FUNCTION(dom_document_savexml) saveempty = xmlSaveNoEmptyTags; xmlSaveNoEmptyTags = 1; } - xmlNodeDump(buf, docp, node, 0, format); + htmlNodeDumpFormatOutput(buf, docp, node, 0, format); if (options & LIBXML_SAVE_NOEMPTYTAG) { xmlSaveNoEmptyTags = saveempty; }