summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-22 13:07:18 +0100
committerAndrew Dolgov <[email protected]>2007-05-22 13:07:18 +0100
commit68834aec1d5656cd678f0dd4e423e9090cc478af (patch)
tree279b156226cf7bccb136e5eb000a282a0f1db00b /functions.php
parent2364be570f9221192d95ae2fa8ded0dd39e92ae5 (diff)
get_article_tags: bugfix
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 011dd5eb9..8668ab092 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' AND owner_uid = owner LIMIT 1) ORDER BY tag_name");
+ ref_id = '$a_id') ORDER BY tag_name");
$tags = array();