get_article_filters: check if action.type is set

This commit is contained in:
Andrew Dolgov 2015-12-03 15:33:47 +03:00
parent 15c0bca0e5
commit fd3e5e8da4

View file

@ -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;
}
}
}