summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}
}