1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-26 16:01:29 +00:00

optimize catchup selected, add CatchupSelected subop in viewfeed

This commit is contained in:
Andrew Dolgov
2006-09-19 05:14:27 +01:00
parent 39ddbaa1c4
commit 472782e8bf
4 changed files with 36 additions and 18 deletions

View File

@@ -696,6 +696,13 @@
type=\"text/css\" href=\"tt-rss_compact.css\"/>";
}
if ($subop == "CatchupSelected") {
$ids = split(",", db_escape_string($_GET["ids"]));
$cmode = sprintf("%d", $_GET["cmode"]);
catchupArticlesById($link, $ids, $cmode);
}
if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
update_generic_feed($link, $feed, $cat_view);
}