summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/backend-rpc.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php
index 4d65ee23e..691771f73 100644
--- a/modules/backend-rpc.php
+++ b/modules/backend-rpc.php
@@ -424,6 +424,35 @@
return;
}
+ if ($subop == "assignToLabel") {
+
+ $ids = split(",", db_escape_string($_REQUEST["ids"]));
+ $label_id = db_escape_string($_REQUEST["lid"]);
+
+ $label = label_find_caption($link, $label_id, $_SESSION["uid"]);
+
+ if ($label) {
+
+ foreach ($ids as $id) {
+ label_add_article($link, $id, $label, $_SESSION["uid"]);
+ }
+ }
+
+ print "<rpc-reply><counters>";
+
+ if ($label) {
+ getGlobalCounters($link);
+ getLabelCounters($link);
+ if (get_pref($link, 'ENABLE_FEED_CATS')) {
+ getCategoryCounters($link);
+ }
+ }
+
+ print "</counters></rpc-reply>";
+
+ return;
+ }
+
print "<rpc-reply><error>Unknown method: $subop</error></rpc-reply>";
}
?>