get_article_filters: set coalesce values for inverse and match_any_rule
This commit is contained in:
parent
4fe2e6bbf1
commit
9b321be270
|
@ -1422,8 +1422,8 @@ class RSSUtils {
|
|||
$matches = array();
|
||||
|
||||
foreach ($filters as $filter) {
|
||||
$match_any_rule = $filter["match_any_rule"];
|
||||
$inverse = $filter["inverse"];
|
||||
$match_any_rule = $filter["match_any_rule"] ?? false;
|
||||
$inverse = $filter["inverse"] ?? false;
|
||||
$filter_match = false;
|
||||
$last_processed_rule = false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue