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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user