From: Andrew Dolgov Date: Mon, 9 Jul 2012 16:39:42 +0000 (+0400) Subject: fix getLabelUnread (refs #464) X-Git-Tag: 1.6.0~193 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f360b02886e55c34737e930277b6b5d840c73566;p=tt-rss.git fix getLabelUnread (refs #464) --- diff --git a/include/functions.php b/include/functions.php index 5b3cc674..29b5d467 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1579,8 +1579,8 @@ function getLabelUnread($link, $label_id, $owner_uid = false) { if (!$owner_uid) $owner_uid = $_SESSION["uid"]; - $result = "SELECT COUNT(ref_id) FROM ttrss_user_entries, ttrss_user_labels2 - WHERE owner_uid = '$owner_uid' AND unread = true AND label_id = '$label_id' AND article_id = ref_id"; + $result = db_query($link, "SELECT COUNT(ref_id) AS unread FROM ttrss_user_entries, ttrss_user_labels2 + WHERE owner_uid = '$owner_uid' AND unread = true AND label_id = '$label_id' AND article_id = ref_id"); if (db_num_rows($result) != 0) { return db_fetch_result($result, 0, "unread");