1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:35:55 +00:00

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