1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 02:31:29 +00:00

fix DAEMON_REFRESH_ONLY handling

This commit is contained in:
Andrew Dolgov
2005-10-28 10:38:36 +01:00
parent dcee8f6125
commit c5142ccae7
2 changed files with 6 additions and 3 deletions

View File

@@ -22,8 +22,10 @@
if (WEB_DEMO_MODE) return;
if (! ($_GET["daemon"] && DAEMON_REFRESH_ONLY)) {
return;
if (DAEMON_REFRESH_ONLY) {
if (!$_GET["daemon"]) {
return;
}
}
db_query($link, "BEGIN");
@@ -39,7 +41,7 @@
if (!$line["last_updated"] ||
time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
update_rss_feed($link, $line["feed_url"], $line["id"]);
}
}