# HG changeset patch
# User Mark Doliner <mark@kingant.net>
# Date 1081003491 0
# Node ID a3ea56f147c7bf3a137ae092ba130f901f729d03
# Parent  1a62ab7225f35a2235420dd44a7cdde47d0d0166
[gaim-migrate @ 9319]
Because sometimes escaping "<" just isn't enough.

committer: Tailor Script <tailor@pidgin.im>

diff -r 1a62ab7225f3 -r a3ea56f147c7 src/protocols/oscar/oscar.c
--- a/src/protocols/oscar/oscar.c	Sat Apr 03 03:30:57 2004 +0000
+++ b/src/protocols/oscar/oscar.c	Sat Apr 03 14:44:51 2004 +0000
@@ -5758,7 +5758,7 @@
 				g_free(away_utf8);
 				tmp2 = gaim_markup_strip_html(tmp1);
 				g_free(tmp1);
-				tmp1 = gaim_strreplace(tmp2, "<", "&lt;");
+				tmp1 = gaim_escape_html(tmp2);
 				g_free(tmp2);
 				tmp3 = gaim_str_sub_away_formatters(tmp1, gaim_account_get_username(gaim_connection_get_account(gc)));
 				g_free(tmp1);