1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

allow manual forced feed updates if ENABLE_UPDATE_SCHEDULER is enabled (even if DAEMON_REFRESH_ONLY is active), got I hate commit messages

This commit is contained in:
Andrew Dolgov
2006-02-11 16:50:02 +01:00
parent 8b9112513e
commit 633d263b04
+8 -6
View File
@@ -1036,7 +1036,7 @@
if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) { if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
if (ENABLE_UPDATE_SCHEDULER) { /* if (ENABLE_UPDATE_SCHEDULER) {
if ($cid == 0) { if ($cid == 0) {
@@ -1046,11 +1046,13 @@
} }
} else { } else {
$tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds // fixme update_rss_feed...
WHERE id = '$feed'"); } */
$feed_url = db_fetch_result($tmp_result, 0, "feed_url");
update_rss_feed($link, $feed_url, $feed); $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
} WHERE id = '$feed'");
$feed_url = db_fetch_result($tmp_result, 0, "feed_url");
update_rss_feed($link, $feed_url, $feed, ENABLE_UPDATE_SCHEDULER);
} }
if ($subop == "MarkAllRead") { if ($subop == "MarkAllRead") {