# HG changeset patch # User Nathan Walp # Date 1080923853 0 # Node ID f4d8a73f7bcc802cf525ef082d40933c52d99950 # Parent 713b10dfd5ff39ba51e09a0e9277da0df45acb32 [gaim-migrate @ 9311] this _might_ do a better job with the incoming ICQ html, but I defer to KingAnt for a final decision committer: Tailor Script diff -r 713b10dfd5ff -r f4d8a73f7bcc src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Fri Apr 02 14:50:46 2004 +0000 +++ b/src/protocols/oscar/oscar.c Fri Apr 02 16:37:33 2004 +0000 @@ -2360,7 +2360,8 @@ /* If the message came from an ICQ user then escape any HTML */ if (isdigit(userinfo->sn[0])) { - gchar *tmp2 = gaim_escape_html(tmp); + gchar *tmp2; + gaim_markup_html_to_xhtml(tmp, &tmp2, NULL); g_free(tmp); tmp = tmp2; }