mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
fixing bug 168196, <a name=""> must be URI escaped too Daniel
* HTMLtree.c: fixing bug 168196, <a name=""> must be URI escaped too Daniel
This commit is contained in:
parent
5cd3e8c494
commit
aa9a983dbd
@ -1,3 +1,7 @@
|
||||
Tue Mar 29 22:29:28 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLtree.c: fixing bug 168196, <a name=""> must be URI escaped too
|
||||
|
||||
Sun Mar 27 13:24:24 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* tree.c: cleanup of the Prop related functions and xmlNewNodeEatName
|
||||
|
@ -663,7 +663,9 @@ htmlAttrDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur,
|
||||
(cur->parent->ns == NULL) &&
|
||||
((!xmlStrcasecmp(cur->name, BAD_CAST "href")) ||
|
||||
(!xmlStrcasecmp(cur->name, BAD_CAST "action")) ||
|
||||
(!xmlStrcasecmp(cur->name, BAD_CAST "src")))) {
|
||||
(!xmlStrcasecmp(cur->name, BAD_CAST "src")) ||
|
||||
((!xmlStrcasecmp(cur->name, BAD_CAST "name")) &&
|
||||
(!xmlStrcasecmp(cur->parent->name, BAD_CAST "a"))))) {
|
||||
xmlChar *escaped;
|
||||
xmlChar *tmp = value;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user