Bug 95345

Summary: strip slashes on subjects
Product: [Applications] akregator Reporter: Tom Albers <toma>
Component: generalAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.0-beta8   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Tom Albers 2004-12-17 17:22:54 UTC
Version:           1.0-beta8 (using KDE 3.3.1,  (3.1))
Compiler:          gcc version 3.3.5 (Debian 1:3.3.5-2)
OS:                Linux (i686) release 2.4.27-20041122

The kontact intergration is great!!! Thanks. 

There is a small problem when the subjects contain a ".

Those are escaped at the moment. A feed which has this problem is: http://rss.fok.nl/feeds/formule1
Comment 1 Teemu Rytilahti 2004-12-27 22:24:36 UTC
CVS commit by rytilahti: 

I don't know if you should escape quotes inside of title tags, but here's a workaround.
BUG:95345


  M +1 -1      myarticle.cpp   1.30


--- kdepim/akregator/src/myarticle.cpp  #1.29:1.30
@@ -139,5 +139,5 @@ void MyArticle::setStatus(int status)
 QString MyArticle::title() const
 {
-    return d->title;
+    return d->title.remove("\\");
 }