summaryrefslogtreecommitdiff
path: root/classes/feeds.php
diff options
context:
space:
mode:
authorGilles Grandou <[email protected]>2017-10-09 17:23:13 +0200
committerGilles Grandou <[email protected]>2017-10-09 22:50:03 +0200
commit81d96c0dee5d6f4146f0089178578544f0f9c533 (patch)
tree449cac23462d6a75fb3a13013adde89404379f40 /classes/feeds.php
parentd4fec604fc513945a20838c4bf3af158840bdda8 (diff)
makes 'order by title' to sort by title and by ascending date
* this allows to chronologically browse all articles with the same title.
Diffstat (limited to 'classes/feeds.php')
-rwxr-xr-xclasses/feeds.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 99eb0fbf2..70271802a 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -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";