aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-09-26 12:40:03 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-09-26 12:40:03 +0000
commitabe01744426f83c44faec18aef7f3fead4696e5e (patch)
treec7578eed0951e82903b9b33b4fcfc4b2a6b27d3a
parent2ace1956859a5429c6e353a84cb05fafd93c8f73 (diff)
downloadandroid_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.tar.gz
android_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.tar.bz2
android_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.zip
fixing bug #94241 on HTML boolean attributes Daniel
* HTMLtree.c: fixing bug #94241 on HTML boolean attributes Daniel
-rw-r--r--ChangeLog4
-rw-r--r--HTMLtree.c2
2 files changed, 5 insertions, 1 deletions
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 <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
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++;
}