diff options
| author | 2023-05-02 14:37:19 +0200 | |
|---|---|---|
| committer | 2023-05-02 14:37:19 +0200 | |
| commit | 4de1d5efea128e6cc70c71bad9be28d01e851f81 (patch) | |
| tree | 86d458a0a5e02190f052e345cec9f7f7e189463d | |
| parent | 53808c6c05a90ad487d770c65e69bc99a2144bae (diff) | |
Fix mark-selection-as-unread (#5367)
The "mark selection as unread" button would mark articles as read instead of unread...
| -rw-r--r-- | app/layout/nav_menu.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
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; ?> |
