pidgin/purple-plugin-pack

10959a130a3b
Parents f6ab8d47fc84
Children 1781a96d2014
This *should* fix the bug pointed indirectly reported in #pidgin by dubkat
where the irssi plugin doesn't respect the lack of the PURPLE_CONNECTION_HTML
flag and thus forces sending HTML over the wire always.
--- a/irssi/textfmt.c Fri Apr 11 21:31:14 2008 -0400
+++ b/irssi/textfmt.c Sat Apr 12 23:55:59 2008 -0400
@@ -60,7 +60,7 @@
if(!(account)->gc) \
return FALSE; \
\
- if(!(account)->gc->flags & PURPLE_CONNECTION_HTML) \
+ if(!((account)->gc->flags & PURPLE_CONNECTION_HTML)) \
return FALSE; \
\
if(!(message)) \