summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-02 01:33:00 +0400
committerAndrew Dolgov <[email protected]>2013-05-02 01:33:02 +0400
commit865a3ed6a0651a7c507898e3493883b454f79eba (patch)
treeb4bc4c4134e61c65b280ec6702b21e0e777ef087 /include
parent8a95d630a9183bf2c7b79f9e1f015eec328d8804 (diff)
change feed cache file extension
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index f342bf7f1..1bbac2843 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;