1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-28 07:21:26 +03:00

fixing bug #112904: html output method escaped plus sign character in URI

* HTMLtree.c: fixing  bug #112904: html output method escaped
  plus sign character in URI attribute.
Daniel
This commit is contained in:
Daniel Veillard 2003-05-16 17:19:40 +00:00
parent 781ac8b19b
commit 5f5b7bb78e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri May 16 13:17:52 EDT 2003 Daniel Veillard <daniel@veillard.com>
* HTMLtree.c: fixing bug #112904: html output method escaped
plus sign character in URI attribute.
Thu May 15 18:06:18 EDT 2003 Daniel Veillard <daniel@veillard.com>
* build_glob.py global.data globals.c parser.c

View File

@ -615,7 +615,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);