mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 13:24:37 -04:00
Fix rare read call bug (#4456)
https://github.com/FreshRSS/FreshRSS/pull/4052#issuecomment-992341442 Bug from https://github.com/FreshRSS/FreshRSS/pull/1995
This commit is contained in:
committed by
GitHub
parent
71ff543783
commit
18b8e91e3f
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user