MIN_UPDATE_TIME, 600 -> 1800 sec

This commit is contained in:
Andrew Dolgov 2005-08-22 13:52:18 +01:00
parent 2127761f2b
commit 9d9c9dd645
2 changed files with 2 additions and 3 deletions

View File

@ -41,9 +41,8 @@
pg_query("UPDATE ttrss_entries SET last_read = NOW(),unread = false");
}
if ($fetch) update_all_feeds($link, $fetch);
update_all_feeds($link, $fetch);
$result = pg_query("SELECT *,
(SELECT count(id) FROM ttrss_entries
WHERE feed_id = ttrss_feeds.id) AS total,

View File

@ -2,7 +2,7 @@
define(DB_CONN, "host=localhost dbname=fox user=fox password=XXXXXXXXXXX");
define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache');
define(HEADLINES_PER_PAGE, 15);
define(MIN_UPDATE_TIME, 600);
define(MIN_UPDATE_TIME, 1800);
// define(CONTENT_CHECK_MD5, false);
?>