summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-12-03 15:33:47 +0300
committerAndrew Dolgov <[email protected]>2015-12-03 15:33:47 +0300
commitfd3e5e8da4f074225fa1c4995230b0da9aaf9812 (patch)
treecb472305cf86b533d620f34d58537325c2c574a4 /include
parent15c0bca0e5797cbedecc269d52dd6e923deef7b3 (diff)
get_article_filters: check if action.type is set
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 476d12be5..669b28e44 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;
}
}
}