From 4de1d5efea128e6cc70c71bad9be28d01e851f81 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 2 May 2023 14:37:19 +0200 Subject: Fix mark-selection-as-unread (#5367) The "mark selection as unread" button would mark articles as read instead of unread... --- app/layout/nav_menu.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index 095b0a787..594913935 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -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; ?> -- cgit v1.2.3