From 18b8e91e3f29329d25d78fdf06376dee608936b3 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 28 Jul 2022 14:24:20 +0200 Subject: Fix rare read call bug (#4456) https://github.com/FreshRSS/FreshRSS/pull/4052#issuecomment-992341442 Bug from https://github.com/FreshRSS/FreshRSS/pull/1995 --- app/Controllers/entryController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/entryController.php') diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php index 29b87b927..6750de43b 100755 --- a/app/Controllers/entryController.php +++ b/app/Controllers/entryController.php @@ -72,7 +72,7 @@ class FreshRSS_entry_Controller extends FreshRSS_ActionController { if (!$get) { // No get? Mark all entries as read (from $id_max) - $entryDAO->markReadEntries($id_max, $is_read); + $entryDAO->markReadEntries($id_max, false, 0, null, 0, $is_read); } else { $type_get = $get[0]; $get = substr($get, 2); -- cgit v1.2.3