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