changeset 15711:47ca3cfedb32

sf patch #1655707, from David Everly Fix the bug where quotes and gt/lt are printed as HTML in Sametime
author Mark Doliner <mark@kingant.net>
date Mon, 26 Feb 2007 04:30:10 +0000
parents d253c87a6a1f
children c2f74eb8dbef
files COPYRIGHT libpurple/protocols/sametime/sametime.c
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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);