summaryrefslogtreecommitdiff
path: root/classes/handler/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-08-11 13:29:09 +0300
committerAndrew Dolgov <[email protected]>2020-08-11 13:29:09 +0300
commit48be0057744944432aab6f0235068250f96f0a8e (patch)
treea7227c79da0f3765cb4a183afceda15d9012d033 /classes/handler/public.php
parent05a47e5cf4d1044f2ff8861298a8050c124451b4 (diff)
instead of taking batch timestamp and score (?) into account, make oldest first sorting work consistently with newest first - i.e. rely on feed-provided timestamp
Diffstat (limited to 'classes/handler/public.php')
-rwxr-xr-xclasses/handler/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 21430e6cc..c378de9bf 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -25,7 +25,7 @@ class Handler_Public extends Handler {
$date_sort_field = "ttrss_entries.title, date_entered, updated";
break;
case "date_reverse":
- $date_sort_field = "date_entered, updated";
+ $date_sort_field = "updated";
break;
case "feed_dates":
$date_sort_field = "updated DESC";