mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
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:
@ -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>
|
Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
|
||||||
|
|
||||||
* xpath.c: enhanced handling of booleans (especially '='
|
* xpath.c: enhanced handling of booleans (especially '='
|
||||||
|
@ -212,8 +212,8 @@ found_head:
|
|||||||
return(0);
|
return(0);
|
||||||
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
|
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
|
||||||
xmlAddChild(cur, meta);
|
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"http-equiv", BAD_CAST"Content-Type");
|
||||||
|
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
cur = cur->children;
|
cur = cur->children;
|
||||||
@ -226,8 +226,8 @@ found_meta:
|
|||||||
|
|
||||||
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
|
meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
|
||||||
xmlAddPrevSibling(cur, meta);
|
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"http-equiv", BAD_CAST"Content-Type");
|
||||||
|
xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user