From 0239683783b6e4ddf793e08b56beaf4877d751e7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 30 May 2007 06:54:37 +0100 Subject: [PATCH] get_article_tags: subquery fix (closes #132) --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 308ae748..841045bb 100644 --- a/functions.php +++ b/functions.php @@ -3365,7 +3365,7 @@ $tmp_result = db_query($link, "SELECT DISTINCT tag_name, owner_uid as owner FROM ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE - ref_id = '$a_id') ORDER BY tag_name"); + ref_id = '$a_id' LIMIT 1) ORDER BY tag_name"); $tags = array(); -- 2.39.2