aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLtree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-03-23 20:31:46 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-03-23 20:31:46 +0000
commit04ee2f2d00658494a57b1b07796a1bd4ef34f60c (patch)
tree4ed0f4a4747873cc4762cbf69e329b0b8171a8d1 /HTMLtree.c
parentef8dd7be297e74e70bd179c54aaf66e62207f1b0 (diff)
downloadandroid_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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/HTMLtree.c b/HTMLtree.c
index 94682bb6..039f3bdf 100644
--- a/HTMLtree.c
+++ b/HTMLtree.c
@@ -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);