diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-01-18 19:56:09 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-01-18 19:56:09 +0000 |
commit | 8cdcdb1b1e90e195a511fb7d4a8f934ddb48dee4 (patch) | |
tree | af6b963c765338ead4c6ab9600b142e0ac8cb20a /ext/dom | |
parent | d6ac882106be05d4a0086dacf3d85980a4e380b0 (diff) | |
download | php-git-8cdcdb1b1e90e195a511fb7d4a8f934ddb48dee4.tar.gz |
- Fixed wrong function call in original commit to FR #39771.
Diffstat (limited to 'ext/dom')
-rw-r--r-- | ext/dom/document.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |