From 0b6d39a7952e9dff98e977d1bcc13476910cde0c Mon Sep 17 00:00:00 2001 From: shn7798 Date: Sat, 29 Feb 2020 23:12:04 +0800 Subject: Fix wrong foreach in applyFilterActions (#2809) --- app/Models/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/Entry.php') diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 813e63bb0..45ff7b8c2 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -295,7 +295,7 @@ class FreshRSS_Entry extends Minz_Model { } foreach ($this->feed->filterActions() as $filterAction) { if ($this->matches($filterAction->booleanSearch())) { - foreach ($filterAction->actions() as $action => $params) { + foreach ($filterAction->actions() as $action) { switch ($action) { case 'read': $this->_isRead(true); -- cgit v1.2.3