summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.php-dist3
-rw-r--r--functions.php1
-rw-r--r--tt-rss.js6
3 files changed, 1 insertions, 9 deletions
diff --git a/config.php-dist b/config.php-dist
index 6ddd22405..14cc1e307 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -35,9 +35,6 @@
define('TMP_DIRECTORY', '/tmp');
// Directory for temporary files
- define('FEEDS_FRAME_REFRESH', 600);
- // Auto refresh interval for feeds frame (in seconds)
-
define('ENABLE_UPDATE_DAEMON', false);
// This enables different mechanism for user-triggered updates designed
// for update daemon running in background on the server.
diff --git a/functions.php b/functions.php
index 44d4ae200..e44d0ea3f 100644
--- a/functions.php
+++ b/functions.php
@@ -3127,7 +3127,6 @@
$params["theme"] = get_user_theme($link);
$params["theme_options"] = get_user_theme_options($link);
$params["daemon_enabled"] = ENABLE_UPDATE_DAEMON;
- $params["feeds_frame_refresh"] = FEEDS_FRAME_REFRESH;
$params["sign_progress"] = theme_image($link, "images/indicator_white.gif");
$params["sign_progress_tiny"] = theme_image($link, "images/indicator_tiny.gif");
diff --git a/tt-rss.js b/tt-rss.js
index c310e267b..130beeed0 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -194,11 +194,7 @@ function timeout() {
scheduleFeedUpdate(false);
- var refresh_time = getInitParam("feeds_frame_refresh");
-
- if (!refresh_time) refresh_time = 600;
-
- setTimeout("timeout()", refresh_time*1000);
+ setTimeout("timeout()", 10*1000);
}
function resetSearch() {