From: Andrew Dolgov Date: Thu, 3 Dec 2015 12:33:47 +0000 (+0300) Subject: get_article_filters: check if action.type is set X-Git-Tag: 16.3~83 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=fd3e5e8da4f074225fa1c4995230b0da9aaf9812 get_article_filters: check if action.type is set --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 476d12be..669b28e4 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -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; } } }