label counters are now uid-aware

This commit is contained in:
Andrew Dolgov 2005-11-18 08:19:34 +01:00
parent d5ebcff9a2
commit 655be0736c
1 changed files with 4 additions and 2 deletions

View File

@ -101,7 +101,8 @@
error_reporting (0);
$tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
WHERE (" . $line["sql_exp"] . ") AND unread = true");
WHERE (" . $line["sql_exp"] . ") AND unread = true AND
owner_uid = ".$_SESSION["uid"]);
$count = db_fetch_result($tmp_result, 0, "count");
@ -191,7 +192,8 @@
error_reporting (0);
$tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
WHERE (" . $line["sql_exp"] . ") AND unread = true");
WHERE (" . $line["sql_exp"] . ") AND unread = true
AND owner_uid = '$owner_uid'");
$count = db_fetch_result($tmp_result, 0, "count");