summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-02 14:02:01 +0300
committerAndrew Dolgov <[email protected]>2017-12-02 14:02:01 +0300
commit7ccb4e91ff45cab907b43de1cc36a3b0ab5a025d (patch)
tree96895e4c37fe3263839139a46e62880959465c75 /classes/opml.php
parent248c62a1cc9fe54255dbf27a56d02ac398a7a588 (diff)
boolean handling changes which probably won't break everything
Diffstat (limited to 'classes/opml.php')
-rw-r--r--classes/opml.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/opml.php b/classes/opml.php
index 03156b79f..5f70558b6 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -364,6 +364,8 @@ class Opml extends Handler_Protected {
$inverse = bool_to_sql_bool($filter["inverse"]);
$title = $filter["title"];
+ print "F: $title, $inverse, $enabled, $match_any_rule";
+
$sth = $this->pdo->prepare("INSERT INTO ttrss_filters2 (match_any_rule,enabled,inverse,title,owner_uid)
VALUES (?, ?, ?, ?, ?)");