summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-28 08:19:28 +0400
committerAndrew Dolgov <[email protected]>2013-03-28 08:19:31 +0400
commitcda55d67d0fffa4751e8377b2b4e3a0a522397c5 (patch)
treefe752a68facb0bf66d989428a8bc6a8845d0f5fe /classes
parent0196ef94f46243ede3235655f921a84fa336097e (diff)
add cleanup_tags/purge orphans to globalUpdateFeeds and simple update
rpc call (closes #636)
Diffstat (limited to 'classes')
-rw-r--r--classes/handler/public.php12
-rw-r--r--classes/rpc.php4
2 files changed, 16 insertions, 0 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 789db0614..ea70b2fc3 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -349,6 +349,18 @@ class Handler_Public extends Handler {
include "rssfuncs.php";
// Update all feeds needing a update.
update_daemon_common($this->link, 0, true, false);
+
+ // Update feedbrowser
+ update_feedbrowser_cache($this->link);
+
+ // Purge orphans and cleanup tags
+ purge_orphans($this->link);
+
+ cleanup_tags($this->link, 14, 50000);
+
+ global $pluginhost;
+ $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
+
}
function sharepopup() {
diff --git a/classes/rpc.php b/classes/rpc.php
index eb241591b..72028759e 100644
--- a/classes/rpc.php
+++ b/classes/rpc.php
@@ -735,6 +735,10 @@ class RPC extends Handler_Protected {
}
}
+ // Purge orphans and cleanup tags
+ purge_orphans($this->link);
+ cleanup_tags($this->link, 14, 50000);
+
if ($num_updated > 0) {
print json_encode(array("message" => "UPDATE_COUNTERS",
"num_updated" => $num_updated));