mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:25:55 +00:00
filter rule saving fix
This commit is contained in:
@@ -696,7 +696,7 @@ class Pref_Filters extends Handler_Protected {
|
|||||||
if ($rule) {
|
if ($rule) {
|
||||||
|
|
||||||
$reg_exp = trim($rule["reg_exp"]);
|
$reg_exp = trim($rule["reg_exp"]);
|
||||||
$inverse = isset($rule["inverse"]) ? true : false;
|
$inverse = isset($rule["inverse"]) ? 1 : 0;
|
||||||
|
|
||||||
$filter_type = (int)trim($rule["filter_type"]);
|
$filter_type = (int)trim($rule["filter_type"]);
|
||||||
$match_on = json_encode($rule["feed_id"]);
|
$match_on = json_encode($rule["feed_id"]);
|
||||||
|
|||||||
Reference in New Issue
Block a user