summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
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"]);