fix update_label_counters bug
This commit is contained in:
parent
f99321a310
commit
e47cfe377b
1 changed files with 6 additions and 1 deletions
|
@ -331,7 +331,12 @@ function label_counters_callback() {
|
||||||
|
|
||||||
function update_label_counters(feed) {
|
function update_label_counters(feed) {
|
||||||
if (xmlhttp_ready(xmlhttp_rpc)) {
|
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.open("GET", query, true);
|
||||||
xmlhttp_rpc.onreadystatechange=label_counters_callback;
|
xmlhttp_rpc.onreadystatechange=label_counters_callback;
|
||||||
xmlhttp_rpc.send(null);
|
xmlhttp_rpc.send(null);
|
||||||
|
|
Loading…
Reference in a new issue