1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:25:56 +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

@@ -27,7 +27,7 @@ class Handler_Public extends Handler {
switch ($order) {
case "title":
$date_sort_field = "ttrss_entries.title";
$date_sort_field = "ttrss_entries.title, date_entered, updated";
break;
case "date_reverse":
$date_sort_field = "date_entered, updated";