block ccache for special cat_ids

This commit is contained in:
Andrew Dolgov 2009-01-16 16:45:16 +01:00
parent bd090ab42e
commit cc914918fa
1 changed files with 10 additions and 1 deletions

View File

@ -2328,6 +2328,10 @@
print "<counter type=\"category\" id=\"-2\" counter=\"$ctr\"/>";
$ctr = getCategoryUnread($link, -3);
print "<counter type=\"category\" id=\"-3\" counter=\"$ctr\"/>";
$age_qpart = getMaxAgeSubquery();
/* $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id)
@ -4210,7 +4214,12 @@
function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true) {
$tmp_category = getCategoryTitle($link, $cat_id);
$cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
if ($cat_id > 0) {
$cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
} else {
$cat_unread = getCategoryUnread($link, $cat_id);
}
if ($hidden) {
$holder_style = "display:none;";