1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:15:55 +00:00

support for ccache updates in catchupArticlesById()

This commit is contained in:
Andrew Dolgov
2009-01-16 16:02:47 +01:00
parent 73241803c7
commit 0737b95a56
2 changed files with 12 additions and 1 deletions

View File

@@ -270,6 +270,8 @@
$csync = $_GET["csync"];
$order_by = db_escape_string($_GET["order_by"]);
ccache_update($link, $feed, $_SESSION["uid"]);
set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
set_pref($link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
@@ -322,7 +324,7 @@
print "<headlines-count value=\"$headlines_count\"/>";
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
$headlines_unread = getFeedUnread($link, $returned_feed);
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"]);
print "<headlines-unread value=\"$headlines_unread\"/>";
printf("<disable-cache value=\"%d\"/>", $disable_cache);