1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-22 11:36:38 +02:00

new option: FEEDS_FRAME_REFRESH (sort-of closes #12)

This commit is contained in:
Andrew Dolgov 2006-02-03 09:35:30 +01:00
parent 7d7cbaf5f8
commit f5de0d8da5
3 changed files with 11 additions and 1 deletions

View File

@ -59,6 +59,8 @@
} else {
setcookie("ttrss_vf_hreadf", 0);
}
setcookie('ttrss_vf_refresh', FEEDS_FRAME_REFRESH);
}
$fetch = $_GET["fetch"];

View File

@ -70,6 +70,9 @@
define('TMP_DIRECTORY', '/tmp');
// Directory for temporary files
define('FEEDS_FRAME_REFRESH', 600);
// Auto refresh interval for feeds frame (in seconds)
// vim:ft=php
?>

View File

@ -253,7 +253,12 @@ function viewfeed(feed, skip, subop) {
function timeout() {
scheduleFeedUpdate(false);
setTimeout("timeout()", 900*1000);
var refresh_time = getCookie('ttrss_vf_refresh');
if (!refresh_time) refresh_time = 600;
setTimeout("timeout()", refresh_time*1000);
}
function resetSearch() {