diff --git a/ChangeLog b/ChangeLog index b212fe79..77e68ed9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard + + * HTMLtree.c: fixing bug #94241 on HTML boolean attributes + Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode diff --git a/HTMLtree.c b/HTMLtree.c index 82e1dc11..cbd0ef0c 100644 --- a/HTMLtree.c +++ b/HTMLtree.c @@ -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++; }