diff libpurple/protocols/jabber/jabber.c @ 32359:dc3ea8f6381a

Use purple_notify_user_info_add_pair_plaintext in some places where we were using purple_notify_user_info_add_pair (which expects an html string for the value). Feel free to double check these if you care about one of these protocols.
author Mark Doliner <mark@kingant.net>
date Sun, 21 Aug 2011 18:43:00 +0000
parents a5b556ac1de5
children 9aee8493db7f 99ca503ea087
line wrap: on
line diff
--- a/libpurple/protocols/jabber/jabber.c	Sun Aug 21 18:04:00 2011 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Sun Aug 21 18:43:00 2011 +0000
@@ -2238,7 +2238,7 @@
 		gchar *idle_str =
 			purple_str_seconds_to_string(time(NULL) - jbr->idle);
 		label = g_strdup_printf("%s%s", _("Idle"), (res ? res : ""));
-		purple_notify_user_info_add_pair(user_info, label, idle_str);
+		purple_notify_user_info_add_pair_plaintext(user_info, label, idle_str);
 		g_free(idle_str);
 		g_free(label);
 	}