diff -r 4333b4be47ca -r c3c62efefdd0 pidgin/plugins/gtkbuddynote.c --- a/pidgin/plugins/gtkbuddynote.c Fri Sep 28 15:20:24 2007 +0000 +++ b/pidgin/plugins/gtkbuddynote.c Fri Sep 28 15:21:51 2007 +0000 @@ -31,8 +31,11 @@ const gchar *note = purple_blist_node_get_string(node, "notes"); if ((note != NULL) && (*note != '\0')) { + char *tmp; + purple_markup_html_to_xhtml(note, NULL, &tmp); g_string_append_printf(text, _("\nBuddy Note: %s"), - note); + tmp); + g_free(tmp); } } }