# HG changeset patch # User Richard Laager # Date 1190992911 0 # Node ID 440a2d75e976dc15dc8e92dde0815ee86459392e # Parent 56a6d78c661348e0a0f373447dc75cf1715ab714 applied changes from 23c81a483086f0c1541212be4c849abb05f9f3bd through 29a042e507ebe2a83bda971c94bb641979090e7b diff -r 56a6d78c6613 -r 440a2d75e976 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); } } }