diff src/protocols/jabber/xdata.c @ 13806:25e63008d3bb

[gaim-migrate @ 16229] Use libxml2 for XML parsing, if available. The biggest benefit from this is actual support for XML namespaces. This fixes a handful of Google Talk integration problems, including typing notifications and buddy icons. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 08 Jun 2006 01:03:51 +0000
parents 387ba791d5f9
children
line wrap: on
line diff
--- a/src/protocols/jabber/xdata.c	Wed Jun 07 15:58:27 2006 +0000
+++ b/src/protocols/jabber/xdata.c	Thu Jun 08 01:03:51 2006 +0000
@@ -49,7 +49,7 @@
 	JabberStream *js = data->js;
 	GList *groups, *flds;
 
-	xmlnode_set_attrib(result, "xmlns", "jabber:x:data");
+	xmlnode_set_namespace(result, "jabber:x:data");
 	xmlnode_set_attrib(result, "type", "submit");
 
 	for(groups = gaim_request_fields_get_groups(fields); groups; groups = groups->next) {
@@ -140,7 +140,7 @@
 	}
 	g_free(data);
 
-	xmlnode_set_attrib(result, "xmlns", "jabber:x:data");
+	xmlnode_set_namespace(result, "jabber:x:data");
 	xmlnode_set_attrib(result, "type", "cancel");
 
 	cb(js, result, user_data);