summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-20 15:18:02 +0100
committerAndrew Dolgov <[email protected]>2006-08-20 15:18:02 +0100
commite8b79d16e367f29789e08fe76aaf54e06ffb64e4 (patch)
treef571deef0e79b8d2ffab4c67949d0aeca1e38091 /functions.php
parent4fd52ba4b02b1d77cce6ebb921f9ec6d374fc4aa (diff)
use ttrss_filters.enabled
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 7e6a134f9..d775abb14 100644
--- a/functions.php
+++ b/functions.php
@@ -380,8 +380,9 @@
$result = db_query($link, "SELECT reg_exp,
ttrss_filter_types.name AS name,
- ttrss_filter_actions.name AS action
+ ttrss_filter_actions.name AS action,
FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
+ enabled = true AND
owner_uid = $owner_uid AND
ttrss_filter_types.id = filter_type AND
ttrss_filter_actions.id = action_id AND