summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index 9a6b178ee..69085bab1 100644
--- a/functions.php
+++ b/functions.php
@@ -201,6 +201,8 @@
}
+ ccache_update($link, $feed_id, $owner_uid);
+
if ($debug) {
_debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
}
@@ -5623,6 +5625,8 @@
$result = db_query($link, "DELETE FROM ttrss_entries WHERE
(SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
+
+ ccache_update($link, $id, $_SESSION['uid']);
} // function clear_feed_articles
/**