From: <sa...@us...> - 2006-10-26 23:07:33
|
Revision: 17589 http://svn.sourceforge.net/gaim/?rev=17589&view=rev Author: sadrul Date: 2006-10-26 16:07:28 -0700 (Thu, 26 Oct 2006) Log Message: ----------- glib replaces "'" with "'" when escaping markup. Apparently some protocols (Yahoo, AIM) have issues with that. So replace "'" back with "'". Modified Paths: -------------- trunk/console/gntconv.c Modified: trunk/console/gntconv.c =================================================================== --- trunk/console/gntconv.c 2006-10-26 15:55:31 UTC (rev 17588) +++ trunk/console/gntconv.c 2006-10-26 23:07:28 UTC (rev 17589) @@ -105,6 +105,9 @@ else { char *escape = g_markup_escape_text(text, -1); + char *apos = gaim_strreplace(escape, "'", "'"); + g_free(escape); + escape = apos; switch (gaim_conversation_get_type(ggconv->active_conv)) { case GAIM_CONV_TYPE_IM: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |