From 655be0736c045b16e7834098f2df260ce11d658d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 18 Nov 2005 08:19:34 +0100 Subject: label counters are now uid-aware --- backend.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'backend.php') diff --git a/backend.php b/backend.php index ff43bc6fe..832dadf06 100644 --- a/backend.php +++ b/backend.php @@ -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"); -- cgit v1.2.3