From: Andrew Dolgov Date: Wed, 1 May 2013 21:33:00 +0000 (+0400) Subject: change feed cache file extension X-Git-Tag: 1.7.9~25^2~31 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=865a3ed6a0651a7c507898e3493883b454f79eba;p=tt-rss.git change feed cache file extension --- 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;