From 07b63daf73e5dc239271501c68ce20b78fcab9a3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 27 Sep 2012 14:06:21 +0400 Subject: [PATCH] fix subcategory query on mysql --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions.php b/include/functions.php index 598b4a33..75ffcc8b 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4498,7 +4498,7 @@ $result = db_query($link, "SELECT id, title FROM ttrss_feed_categories WHERE parent_cat = '$cat_id' AND owner_uid = " . $_SESSION["uid"] . - "ORDER BY id, title"); + " ORDER BY id, title"); while ($line = db_fetch_assoc($result)) { $unread = getFeedUnread($link, $line["id"], true) + -- 2.39.2