From fd3e5e8da4f074225fa1c4995230b0da9aaf9812 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 3 Dec 2015 15:33:47 +0300 Subject: [PATCH] get_article_filters: check if action.type is set --- include/rssfuncs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } } -- 2.39.2