# HG changeset patch # User Mark Doliner # Date 1172464210 0 # Node ID 47ca3cfedb3274d4f42b3976db42436ae403af4a # Parent d253c87a6a1f6d375afed30b0346f05295aeeb28 sf patch #1655707, from David Everly Fix the bug where quotes and gt/lt are printed as HTML in Sametime diff -r d253c87a6a1f -r 47ca3cfedb32 COPYRIGHT --- a/COPYRIGHT Sun Feb 25 21:41:59 2007 +0000 +++ b/COPYRIGHT Mon Feb 26 04:30:10 2007 +0000 @@ -105,6 +105,7 @@ Stefan Esser Steffen Eschenbacher Marc Etcheverry +David Everly Larry Ewing Gábor Farkas Jesse Farmer diff -r d253c87a6a1f -r 47ca3cfedb32 libpurple/protocols/sametime/sametime.c --- a/libpurple/protocols/sametime/sametime.c Sun Feb 25 21:41:59 2007 +0000 +++ b/libpurple/protocols/sametime/sametime.c Mon Feb 26 04:30:10 2007 +0000 @@ -4810,13 +4810,13 @@ msg = gaim_markup_strip_html(message); if(conf) { - ret = ! mwConference_sendText(conf, message); + ret = ! mwConference_sendText(conf, msg); } else { struct mwPlace *place = ID_TO_PLACE(pd, id); g_return_val_if_fail(place != NULL, 0); - ret = ! mwPlace_sendText(place, message); + ret = ! mwPlace_sendText(place, msg); } g_free(msg);