summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-27 14:06:21 +0400
committerAndrew Dolgov <[email protected]>2012-09-27 14:06:21 +0400
commit07b63daf73e5dc239271501c68ce20b78fcab9a3 (patch)
tree6a1551649216a6428904e0d9b8c5d1dabf85ef07 /include/functions.php
parent6c8a161d8c5bd57978856e6e1a76bdb4546882be (diff)
fix subcategory query on mysql
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 598b4a339..75ffcc8bf 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) +