From 81d96c0dee5d6f4146f0089178578544f0f9c533 Mon Sep 17 00:00:00 2001 From: Gilles Grandou Date: Mon, 9 Oct 2017 17:23:13 +0200 Subject: makes 'order by title' to sort by title and by ascending date * this allows to chronologically browse all articles with the same title. --- classes/handler/public.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/handler') diff --git a/classes/handler/public.php b/classes/handler/public.php index 317bc64db..d3c854ae4 100644 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -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"; -- cgit v1.2.3-54-g00ecf