From: <the...@us...> - 2007-02-26 04:30:15
|
Revision: 18196 http://svn.sourceforge.net/gaim/?rev=18196&view=rev Author: thekingant Date: 2007-02-25 20:30:15 -0800 (Sun, 25 Feb 2007) Log Message: ----------- sf patch #1655707, from David Everly Fix the bug where quotes and gt/lt are printed as HTML in Sametime Modified Paths: -------------- trunk/COPYRIGHT trunk/libgaim/protocols/sametime/sametime.c Modified: trunk/COPYRIGHT =================================================================== --- trunk/COPYRIGHT 2007-02-26 02:38:05 UTC (rev 18195) +++ trunk/COPYRIGHT 2007-02-26 04:30:15 UTC (rev 18196) @@ -104,6 +104,7 @@ Stefan Esser Steffen Eschenbacher Marc Etcheverry +David Everly Larry Ewing Gábor Farkas Jesse Farmer Modified: trunk/libgaim/protocols/sametime/sametime.c =================================================================== --- trunk/libgaim/protocols/sametime/sametime.c 2007-02-26 02:38:05 UTC (rev 18195) +++ trunk/libgaim/protocols/sametime/sametime.c 2007-02-26 04:30:15 UTC (rev 18196) @@ -4831,13 +4831,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); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |