diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-04-18 11:54:04 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-04-18 11:54:04 +0000 |
commit | 6231e845599329d10400e5f8ef9245e1434b4bf7 (patch) | |
tree | 7648d34bc61e385ef82e600e729b777de1cbb311 /HTMLtree.c | |
parent | 648b8e9707afe888bb3cf35294014a05a336bc0f (diff) | |
download | android_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.tar.gz android_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.tar.bz2 android_external_libxml2-6231e845599329d10400e5f8ef9245e1434b4bf7.zip |
fixed & serialization bug introduced in 2.4.20 this changes a few things
* HTMLtree.c: fixed & serialization bug introduced in 2.4.20
* result/HTML/*: this changes a few things in the results
Daniel
Diffstat (limited to 'HTMLtree.c')
-rw-r--r-- | HTMLtree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -357,7 +357,7 @@ htmlAttrDump(xmlBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur) { while (IS_BLANK(*tmp)) tmp++; - escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%"); + escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&"); if (escaped != NULL) { xmlBufferWriteQuotedString(buf, escaped); xmlFree(escaped); @@ -844,7 +844,7 @@ htmlAttrDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur, while (IS_BLANK(*tmp)) tmp++; - escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%"); + escaped = xmlURIEscapeStr(tmp, BAD_CAST"@/:=?;#%&"); if (escaped != NULL) { xmlBufferWriteQuotedString(buf->buffer, escaped); xmlFree(escaped); |