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);

View File

@ -3980,6 +3980,15 @@
unread = NOT unread,last_read = NOW()
WHERE ($ids_qpart) AND owner_uid = $owner_uid");
}
/* update ccache */
$result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
WHERE ($ids_qpart) AND owner_uid = $owner_uid");
while ($line = db_fetch_assoc($result)) {
ccache_update($link, $line["feed_id"], $owner_uid);
}
}
function catchupArticleById($link, $id, $cmode) {