fix all_counters_callback in catless mode
This commit is contained in:
parent
c3f348c2fa
commit
0813387b1a
|
@ -369,7 +369,9 @@ function all_counters_callback() {
|
||||||
|
|
||||||
if (t == "category") {
|
if (t == "category") {
|
||||||
var catctr = f_document.getElementById("FCATCTR-" + id);
|
var catctr = f_document.getElementById("FCATCTR-" + id);
|
||||||
catctr.innerHTML = "(" + ctr + " unread)";
|
if (catctr) {
|
||||||
|
catctr.innerHTML = "(" + ctr + " unread)";
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue