# HG changeset patch # User Richard Laager # Date 1133315394 0 # Node ID df93ed932b3ad9dd5a6c031dc294ca0b67311bc4 # Parent 0e467757b57a3dce39bf225c4d1e6067f0258322 [gaim-migrate @ 14569] "This patch fixes formatting in the yahoo profile pages for items grabbed from the tooltip", so sayeth the Bleeter. committer: Tailor Script diff -r 0e467757b57a -r df93ed932b3a src/protocols/yahoo/yahoo_profile.c --- a/src/protocols/yahoo/yahoo_profile.c Wed Nov 30 01:04:45 2005 +0000 +++ b/src/protocols/yahoo/yahoo_profile.c Wed Nov 30 01:49:54 2005 +0000 @@ -663,8 +663,12 @@ } #endif if (statustext) { - g_string_append_printf(s, "%s
", statustext); + char *tmp; + g_strstrip(statustext); + tmp = gaim_strreplace(statustext, "\n", "
"); g_free(statustext); + g_string_append_printf(s, "%s
", tmp); + g_free(tmp); } if ((f = yahoo_friend_find(info_data->gc, b->name))) { const char *ip;