Hi KDE FreeBSD team
Kopete in kdenetwork 3.4.1 has the very annoying habit of needlessly HTML escaping messages sent via ICQ. That is, if
for example I send a message containing a newline, the other side will see <br />. If I use "<" or
">", they will see < respectively >. The problem was noticed after 3.4.1 was cut and has
been fixed in KDE SVN. Maybe the attached single line patch from KDE SVN could be added to FreeBSD's net/kdenetwork
port?
If you'd prefer for me to file a FreeBSD ports bug report, I can do that as
well of course.
- Bartosz
--- kopete/protocols/oscar/oscarcontact.cpp.orig Thu Jun 30 02:18:56 2005
+++ kopete/protocols/oscar/oscarcontact.cpp Thu Jun 30 02:19:24 2005
@@ -183,7 +183,7 @@
Q_UNUSED( session );
Oscar::Message message;
- message.setText( msg.escapedBody() );
+ message.setText( msg.plainBody() );
message.setTimestamp( msg.timestamp() );
message.setSender( mAccount->accountId() );
_______________________________________________
kde-freebsd mailing list
[email protected]
http://freebsd.kde.org/mailman/listinfo/kde-freebsd