1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-31 16:21:28 +00:00

makes 'order by title' to sort by title and by ascending date

* this allows to chronologically browse all articles with the
  same title.
This commit is contained in:
Gilles Grandou
2017-10-09 17:23:13 +02:00
parent d4fec604fc
commit 81d96c0dee
3 changed files with 3 additions and 3 deletions

View File

@@ -214,7 +214,7 @@ class API extends Handler {
$override_order = false;
switch ($_REQUEST["order_by"]) {
case "title":
$override_order = "ttrss_entries.title";
$override_order = "ttrss_entries.title, date_entered, updated";
break;
case "date_reverse":
$override_order = "score DESC, date_entered, updated";