From 865a3ed6a0651a7c507898e3493883b454f79eba Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 2 May 2013 01:33:00 +0400 Subject: [PATCH] change feed cache file extension --- include/rssfuncs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rssfuncs.php b/include/rssfuncs.php index f342bf7f..1bbac284 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -243,7 +243,7 @@ $date_feed_processed = date('Y-m-d H:i'); - $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".feed2"; + $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".xml"; // Ignore cache if new feed or manual update. $cache_age = ($no_cache || is_null($last_updated) || strpos($last_updated, '1970-01-01') === 0) ? 30 : get_feed_update_interval($feed) * 60; -- 2.39.2