1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-24 21:33:51 +03:00

fixing bug #94241 on HTML boolean attributes Daniel

* HTMLtree.c: fixing bug #94241 on HTML boolean attributes
Daniel
This commit is contained in:
Daniel Veillard 2002-09-26 12:40:03 +00:00
parent 2ace195685
commit abe0174442
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
* HTMLtree.c: fixing bug #94241 on HTML boolean attributes
Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
* doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode

View File

@ -306,7 +306,7 @@ htmlIsBooleanAttr(const xmlChar *name)
int i = 0;
while (htmlBooleanAttrs[i] != NULL) {
if (xmlStrcmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
if (xmlStrcasecmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
return 1;
i++;
}