| Summary: | Yahoo chat shows <br/> instead of newline(s) | ||
|---|---|---|---|
| Product: | [Unmaintained] kopete | Reporter: | Luigi Toscano <luigi.toscano> |
| Component: | Yahoo Plugin | Assignee: | Kopete Developers <kopete-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 0.12.3 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Luigi Toscano
2007-01-02 13:30:23 UTC
SVN commit 658500 by duffeck: Fix linebreaks, showing up as <br/> BUG:139503 M +1 -0 yahoocontact.cpp --- branches/KDE/3.5/kdenetwork/kopete/protocols/yahoo/yahoocontact.cpp #658499:658500 @@ -308,6 +308,7 @@ newMsg.replace( QString::fromLatin1( """ ), QString::fromLatin1( "\"" ) ); newMsg.replace( QString::fromLatin1( " " ), QString::fromLatin1( " " ) ); newMsg.replace( QString::fromLatin1( "&" ), QString::fromLatin1( "&" ) ); + newMsg.replace( QString::fromLatin1( "<br />" ), QString::fromLatin1( "\r" ) ); newMsg.replace( QString::fromLatin1( "<br/>" ), QString::fromLatin1( "\r" ) ); return newMsg; |