summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-02 13:46:05 +0400
committerAndrew Dolgov <[email protected]>2012-09-02 13:46:05 +0400
commitd7f9e4fc0859c6f05f2b2e255ff9059f40691564 (patch)
treefa97fa8926837ff4fc0ada62c28e64bd303188f0 /classes/opml.php
parent3b003f63969b72ddccdc249d89b2b537af8132b9 (diff)
parent8592a8e3b2515499450568e2a7ab9a347ca7d535 (diff)
Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS
Diffstat (limited to 'classes/opml.php')
-rw-r--r--classes/opml.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/classes/opml.php b/classes/opml.php
index e76f16bbe..9abbeebaa 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -165,7 +165,7 @@ class Opml extends Handler_Protected {
WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY id");
while ($line = db_fetch_assoc($result)) {
- foreach (array('enabled', 'inverse', 'cat_filter') as $b) {
+ foreach (array('enabled', 'match_any_rule') as $b) {
$line[$b] = sql_bool_to_bool($line[$b]);
}
@@ -189,6 +189,8 @@ class Opml extends Handler_Protected {
$tmp_line["feed"] = "";
}
+ $tmp_line["cat_filter"] = sql_bool_to_bool($tmp_line["cat_filter"]);
+
unset($tmp_line["feed_id"]);
unset($tmp_line["cat_id"]);