Bug 95345 - strip slashes on subjects
Summary: strip slashes on subjects
Status: RESOLVED FIXED
Alias: None
Product: akregator
Classification: Applications
Component: general (show other bugs)
Version: 1.0-beta8
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-17 17:22 UTC by Tom Albers
Modified: 2004-12-27 22:24 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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("\\");
 }