changeset 8564:f4d8a73f7bcc

[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 <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 02 Apr 2004 16:37:33 +0000
parents 713b10dfd5ff
children 52473ca8f2e5
files src/protocols/oscar/oscar.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 	}