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

@@ -915,7 +915,7 @@ class Feeds extends Handler_Protected {
switch ($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";