------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=114673
------- Additional Comments From frank.osterfeld kdemail net 2005-10-23 09:52 -------
SVN commit 473296 by osterfeld:
Respect old autofetch settings from 3.4 times
CCBUG: 114673
M +3 -1 feed.cpp
--- branches/KDE/3.5/kdepim/akregator/src/feed.cpp #473295:473296
@ -127,7 +127,9 @
QString xmlUrl = e.hasAttribute("xmlUrl") ? e.attribute("xmlUrl") : e.attribute("xmlurl");
- bool useCustomFetchInterval = e.attribute("useCustomFetchInterval") == "true";
+ bool useCustomFetchInterval = e.attribute("useCustomFetchInterval") == "true" || e.attribute("autoFetch") == "true";
+ // "autoFetch" is used in 3.4
+ // Will be removed in KDE4
QString htmlUrl = e.attribute("htmlUrl");
QString description = e.attribute("description");
|