summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 909d34e12..b6b608e71 100644
--- a/functions.js
+++ b/functions.js
@@ -331,7 +331,12 @@ function label_counters_callback() {
function update_label_counters(feed) {
if (xmlhttp_ready(xmlhttp_rpc)) {
- var query = "backend.php?op=rpc&subop=getLabelCounters&aid=" + feed;
+ var query = "backend.php?op=rpc&subop=getLabelCounters";
+
+ if (feed > 0) {
+ query = query + "&aid=" + feed;
+ }
+
xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=label_counters_callback;
xmlhttp_rpc.send(null);