summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-05 16:38:55 +0300
committerAndrew Dolgov <[email protected]>2010-11-05 16:38:55 +0300
commit8acc449c6bb2c0e185a6a82a6e29c06c0b8185e0 (patch)
tree2e78874fc149edb71cdccf005ae20a409d6cdb8c
parent2abc7af064862f16060ec61ad36cedf5433f35e7 (diff)
change counter.cat and counter.tag to counter.kind
-rw-r--r--functions.js4
-rw-r--r--functions.php6
2 files changed, 5 insertions, 5 deletions
diff --git a/functions.js b/functions.js
index 01c3c0508..f6b7ec335 100644
--- a/functions.js
+++ b/functions.js
@@ -388,7 +388,7 @@ function parse_counters(reply, scheduled_call) {
for (var l = 0; l < elems.length; l++) {
var id = elems[l].id
- var is_cat = elems[l].cat;
+ var kind = elems[l].kind;
var ctr = parseInt(elems[l].counter)
var error = elems[l].error;
var has_img = elems[l].has_img;
@@ -412,7 +412,7 @@ function parse_counters(reply, scheduled_call) {
continue;
}
- if (is_cat) {
+ if (kind && kind == "cat") {
var catctr = $("FCATCTR-" + id);
if (catctr) {
catctr.innerHTML = "(" + ctr + ")";
diff --git a/functions.php b/functions.php
index e39a04ca4..be3937642 100644
--- a/functions.php
+++ b/functions.php
@@ -2476,7 +2476,7 @@
/* Labels category */
- $cv = array("id" => -2, "cat" => true,
+ $cv = array("id" => -2, "kind" => "cat",
"counter" => getCategoryUnread($link, -2));
array_push($ret_arr, $cv);
@@ -2491,7 +2491,7 @@
while ($line = db_fetch_assoc($result)) {
$line["cat_id"] = (int) $line["cat_id"];
- $cv = array("id" => $line["cat_id"], "cat" => true,
+ $cv = array("id" => $line["cat_id"], "kind" => "cat",
"counter" => $line["unread"]);
array_push($ret_arr, $cv);
@@ -2792,7 +2792,7 @@
$tag = htmlspecialchars($tag);
$cv = array("id" => $tag,
- "tag" => true,
+ "kind" => "tag",
"counter" => $unread);
array_push($ret_arr, $cv);