fix DAEMON_REFRESH_ONLY handling
This commit is contained in:
parent
dcee8f6125
commit
c5142ccae7
|
@ -320,6 +320,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
||||||
|
|
||||||
update_all_feeds($link, true);
|
update_all_feeds($link, true);
|
||||||
|
|
||||||
$omode = $_GET["omode"];
|
$omode = $_GET["omode"];
|
||||||
|
|
|
@ -22,8 +22,10 @@
|
||||||
|
|
||||||
if (WEB_DEMO_MODE) return;
|
if (WEB_DEMO_MODE) return;
|
||||||
|
|
||||||
if (! ($_GET["daemon"] && DAEMON_REFRESH_ONLY)) {
|
if (DAEMON_REFRESH_ONLY) {
|
||||||
return;
|
if (!$_GET["daemon"]) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
db_query($link, "BEGIN");
|
db_query($link, "BEGIN");
|
||||||
|
@ -39,7 +41,7 @@
|
||||||
|
|
||||||
if (!$line["last_updated"] ||
|
if (!$line["last_updated"] ||
|
||||||
time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
|
time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {
|
||||||
|
|
||||||
update_rss_feed($link, $line["feed_url"], $line["id"]);
|
update_rss_feed($link, $line["feed_url"], $line["id"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue