[gaim-migrate @ 15004]

Mon, 26 Dec 2005 06:50:51 +0000

author
Wesley Lin
date
Mon, 26 Dec 2005 06:50:51 +0000
changeset 12661
5255e7717f7c
parent 12660
3e9413c9162e
child 12662
061eb8a9e421

[gaim-migrate @ 15004]
sf patch #1304398, from Wesley Lin
Get rid of an extra <BR> in oscar info display

committer: Mark Doliner <markdoliner@pidgin.im>

src/protocols/oscar/oscar.c file | annotate | diff | comparison | revisions
--- a/src/protocols/oscar/oscar.c	Mon Dec 26 06:27:39 2005 +0000
+++ b/src/protocols/oscar/oscar.c	Mon Dec 26 06:50:51 2005 +0000
@@ -5093,7 +5093,7 @@
 		away_utf8 = oscar_encoding_to_utf8(tmp, userinfo->away, userinfo->away_len);
 		g_free(tmp);
 		if (away_utf8 != NULL) {
-			g_string_append_printf(str, "\n<hr>%s<br>", away_utf8);
+			g_string_append_printf(str, "\n<hr>%s", away_utf8);
 			g_free(away_utf8);
 		}
 	}
@@ -5103,7 +5103,7 @@
 		info_utf8 = oscar_encoding_to_utf8(tmp, userinfo->info, userinfo->info_len);
 		g_free(tmp);
 		if (info_utf8 != NULL) {
-			g_string_append_printf(str, "\n<hr>%s<br>", info_utf8);
+			g_string_append_printf(str, "\n<hr>%s", info_utf8);
 			g_free(info_utf8);
 		}
 	}

mercurial