Fix mark-selection-as-unread (#5367)

The "mark selection as unread" button would mark articles as read instead of unread...
This commit is contained in:
Alexandre Alapetite
2023-05-02 14:37:19 +02:00
committed by GitHub
parent 53808c6c05
commit 4de1d5efea

View File

@@ -132,7 +132,7 @@
);
$mark_unread_url = $mark_read_url;
$mark_unread_url['params']['is_read'] = false;
$mark_unread_url['params']['is_read'] = '0';
$mark_unread_url['params']['nextGet'] = $get;
?>