rss displayer doesn't update
PermalinkSome one got a solution?

The problem is that C5 and SimplePie the RSS library both cache the feed and will use that in preference to fetching a fresh copy of the feed.
There are a few things you can do.
1) Clear the cache or disable cacheing on the page with the RSS feed.
2) Modify the RSS_Displayer block to set "enable-cache" to be false.
3) Modify the SimplePie library to either disable the cache or set the cache time to a lower number.
I accidentally did all three of these things on my development and production server so I don't know which one is the best to use, I'd say a combination of 1 and 2. If you aren't experienced enough to know how todo what I've suggested let me know and I'll post some code segments.
Hope this helps
Russ
add the line...
$feed->enable_cache (false);
before the line...
$feed->init();
This is what you need to do but with further investigation it has not worked for me and I've logged a bug with the developers. It may work for you so give it a try but so far resetting the cache is the only thing that's working for me.
Russ