From e47cfe377bfebd3843ad00ead9eb7a71f6599dd0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 9 Sep 2005 04:11:32 +0100 Subject: [PATCH] fix update_label_counters bug --- functions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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);