diff --git a/tools/podcast.php b/tools/podcast.php index 55570f5..bcefb9e 100644 --- a/tools/podcast.php +++ b/tools/podcast.php @@ -27,9 +27,9 @@ class Podcast { function parseFeed() { // Renew cache if older than 5 minutes - if (time() - filemtime("assets/podcast.rss") > 5*60) { + if (time() - filemtime("tools/podcast.rss") > 5*60) { $data = file_get_contents("https://feeds.acast.com/public/shows/le-plus-beau-des-voyages"); - file_put_contents("assets/podcast.rss",$data); + file_put_contents("tools/podcast.rss",$data); } $cachedFeedData = file_get_contents("tools/podcast.rss"); return simplexml_load_string($cachedFeedData,'SimpleXMLElement', LIBXML_NOCDATA);;