diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2003-03-23 20:31:46 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2003-03-23 20:31:46 +0000 |
| commit | 04ee2f2d00658494a57b1b07796a1bd4ef34f60c (patch) | |
| tree | 4ed0f4a4747873cc4762cbf69e329b0b8171a8d1 /HTMLtree.c | |
| parent | ef8dd7be297e74e70bd179c54aaf66e62207f1b0 (diff) | |
| download | android_external_libxml2-04ee2f2d00658494a57b1b07796a1bd4ef34f60c.tar.gz android_external_libxml2-04ee2f2d00658494a57b1b07796a1bd4ef34f60c.tar.bz2 android_external_libxml2-04ee2f2d00658494a57b1b07796a1bd4ef34f60c.zip | |
avoid escaping ',' in URIs Daniel
* HTMLtree.c: avoid escaping ',' in URIs
Daniel
Diffstat (limited to 'HTMLtree.c')
| -rw-r--r-- | HTMLtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -612,7 +612,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); |
