Disable simplepie caching

This commit is contained in:
drigato 2015-09-23 14:50:32 -04:00
parent 727abac0b8
commit 4de42ada6e

View file

@ -53,7 +53,7 @@ class Application_Service_PodcastService extends Application_Service_ThirdPartyC
try {
$feed = new SimplePie();
$feed->set_feed_url($podcastUrl);
$feed->set_cache_location($_SERVER['DOCUMENT_ROOT'] . '/rss/cache_files');
$feed->enable_cache(false);
$feed->init();
return $feed;
} catch (FeedException $e) {