get_article_filters: check if action.type is set
This commit is contained in:
parent
15c0bca0e5
commit
fd3e5e8da4
1 changed files with 1 additions and 1 deletions
|
@ -1405,7 +1405,7 @@
|
|||
array_push($matches, $action);
|
||||
|
||||
// if Stop action encountered, perform no further processing
|
||||
if ($action["type"] == "stop") return $matches;
|
||||
if (isset($action["type"]) && $action["type"] == "stop") return $matches;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue