mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +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:
@ -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);
|
||||
|
Reference in New Issue
Block a user