comparison src/protocols/oscar/oscar.c @ 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 e3c059c3d92d
children 88988327a4e0
comparison
equal deleted inserted replaced
8563:713b10dfd5ff 8564:f4d8a73f7bcc
2358 } 2358 }
2359 } 2359 }
2360 2360
2361 /* If the message came from an ICQ user then escape any HTML */ 2361 /* If the message came from an ICQ user then escape any HTML */
2362 if (isdigit(userinfo->sn[0])) { 2362 if (isdigit(userinfo->sn[0])) {
2363 gchar *tmp2 = gaim_escape_html(tmp); 2363 gchar *tmp2;
2364 gaim_markup_html_to_xhtml(tmp, &tmp2, NULL);
2364 g_free(tmp); 2365 g_free(tmp);
2365 tmp = tmp2; 2366 tmp = tmp2;
2366 } 2367 }
2367 2368
2368 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); 2369 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL));