1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-15 23:24:06 +03:00

avoid escaping ',' in URIs Daniel

* HTMLtree.c: avoid escaping ',' in URIs
Daniel
This commit is contained in:
Daniel Veillard 2003-03-23 20:31:46 +00:00
parent ef8dd7be29
commit 04ee2f2d00
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Mar 23 21:30:50 CET 2003 Daniel Veillard <daniel@veillard.com>
* HTMLtree.c: avoid escaping ',' in URIs
Sun Mar 23 12:57:00 CET 2003 Daniel Veillard <daniel@veillard.com>
* parser.c: fixing bug #108976 get the ID/REFs to reference

View File

@ -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);