summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index c0b20b1db..83a0ab51d 100644
--- a/backend.php
+++ b/backend.php
@@ -3,7 +3,7 @@
$op = $_GET["op"];
- if ($op == "rpc") {
+ if ($op == "rpc" || $op == "updateAllFeeds") {
header("Content-Type: application/xml");
}
@@ -1489,6 +1489,18 @@
}
+ if ($op == "updateAllFeeds") {
+ update_all_feeds($link, true);
+
+ print "<rpc-reply>";
+ getLabelCounters($link);
+ getFeedCounters($link);
+ getTagCounters($link);
+ getGlobalCounters($link);
+ print "</rpc-reply>";
+
+ }
+
db_close($link);
?>