summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php6
1 files changed, 3 insertions, 3 deletions
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);