1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 20:19:16 +00:00

ccache_update: code cleanup

This commit is contained in:
Andrew Dolgov
2009-01-16 17:20:45 +01:00
parent a5c815d358
commit b2efea5171

View File

@@ -6088,37 +6088,6 @@
}
}
# if ($feed_id > 0) {
#
# /* update parent cat if needed OR in cat mode update cat feeds */
#
# if ($is_cat) {
# $result = db_query($link, "SELECT id AS feed_id FROM ttrss_feeds
# WHERE owner_uid = '$owner_uid' AND cat_id = '$feed_id'");
#
# while ($line = db_fetch_assoc($result)) {
# ccache_update($link, (int)$line["feed_id"], $owner_uid, false);
# }
#
# } else {
# $result = db_query($link, "SELECT cat_id AS feed_id FROM ttrss_feeds
# WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
#
# while ($line = db_fetch_assoc($result)) {
# ccache_update($link, (int)$line["feed_id"], $owner_uid, true);
# }
# }
#
# /* update labels */
#
# $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
# WHERE owner_uid = '$owner_uid' AND feed_id < 0");
#
# while ($line = db_fetch_assoc($result)) {
# ccache_update($link, $line["feed_id"], $owner_uid);
# }
# }
return $unread;
}
?>