Sfoglia il codice sorgente

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

The "mark selection as unread" button would mark articles as read instead of unread...
Alexandre Alapetite 2 anni fa
parent
commit
4de1d5efea
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      app/layout/nav_menu.phtml

+ 1 - 1
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;
 	?>