get_article_filters: check if action.type is set

master
Andrew Dolgov 9 years ago
parent 15c0bca0e5
commit fd3e5e8da4

@ -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…
Cancel
Save