summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-29 18:33:25 +0100
committerAndrew Dolgov <[email protected]>2005-12-29 18:33:25 +0100
commit5890c3f44be9eb4bfdf1dd9e40b2e0100e094813 (patch)
tree85b4ea0f189b08381c0ae0d839354bf6dd6fc65c /backend.php
parent3b55928b735a6de30ae3d25c5179d3af1eb18666 (diff)
fix broken pref-filters display on PG
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index f848ac531..925970fc9 100644
--- a/backend.php
+++ b/backend.php
@@ -2417,8 +2417,8 @@
ttrss_filter_actions.description AS action_description,
ttrss_feeds.title AS feed_title
FROM
- ttrss_filters,ttrss_filter_types,ttrss_filter_actions LEFT JOIN
- ttrss_feeds ON (feed_id = ttrss_feeds.id)
+ ttrss_filter_types,ttrss_filter_actions,ttrss_filters LEFT JOIN
+ ttrss_feeds ON (ttrss_filters.feed_id = ttrss_feeds.id)
WHERE
filter_type = ttrss_filter_types.id AND
ttrss_filter_actions.id = action_id AND