From: Andrew Dolgov Date: Thu, 25 Apr 2013 12:12:49 +0000 (+0400) Subject: fetch: better checking for 1970- date X-Git-Tag: 1.7.9~25^2~84 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=23283f11a33fc1e93f6adf1d6ee506a6bb579eb4;p=tt-rss.git fetch: better checking for 1970- date --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index f806d480..dbe76d2d 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -241,8 +241,7 @@ $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".feed"; // Ignore cache if new feed or manual update. - $cache_age = ($no_cache || is_null($last_updated) || $last_updated == '1970-01-01 00:00:00') ? - 30 : get_feed_update_interval($feed) * 60; + $cache_age = ($no_cache || is_null($last_updated) || strpos($last_updated, '1970-01-01') === 0) ? 30 : get_feed_update_interval($feed) * 60; _debug("cache filename: $cache_filename exists: " . file_exists($cache_filename), $debug_enabled); _debug("cache age: $cache_age; no cache: $no_cache", $debug_enabled);