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();
|
$matches = array();
|
||||||
|
|
||||||
foreach ($filters as $filter) {
|
foreach ($filters as $filter) {
|
||||||
$match_any_rule = $filter["match_any_rule"];
|
$match_any_rule = $filter["match_any_rule"] ?? false;
|
||||||
$inverse = $filter["inverse"];
|
$inverse = $filter["inverse"] ?? false;
|
||||||
$filter_match = false;
|
$filter_match = false;
|
||||||
$last_processed_rule = false;
|
$last_processed_rule = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue