changed the order of the encoding declaration attributes in the meta tags

* HTMLtree.c: changed the order of the encoding declaration
  attributes in the meta tags due to a bug in IE/Mac
Daniel
This commit is contained in:
Daniel Veillard 2002-07-17 17:57:34 +00:00
parent 0c022ad823
commit 3a42f3fe30
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
* HTMLtree.c: changed the order of the encoding declaration
attributes in the meta tags due to a bug in IE/Mac
Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
* xpath.c: enhanced handling of booleans (especially '='

View File

@ -212,8 +212,8 @@ found_head:
return(0);
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
xmlAddChild(cur, meta);
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
xmlNewProp(meta, BAD_CAST"http-equiv", BAD_CAST"Content-Type");
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
return(0);
}
cur = cur->children;
@ -226,8 +226,8 @@ found_meta:
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
xmlAddPrevSibling(cur, meta);
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
xmlNewProp(meta, BAD_CAST"http-equiv", BAD_CAST"Content-Type");
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
}
/*