summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-03 16:06:54 +0400
committerAndrew Dolgov <[email protected]>2013-04-03 16:06:54 +0400
commit686852d548a1c078bc4e10d6533443e2092bc1fd (patch)
tree2089038ecd071e05c7bf9319fa6df2a132bb720f
parent1fcb6baa38b658cbfb472ebcf16096cd8055e12a (diff)
fix default sorting not taking score into account, remove unused SORT_HEADLINES_BY_FEED_DATE remnant
-rw-r--r--include/functions.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/functions.php b/include/functions.php
index c06208d14..c05ee0a49 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -2422,13 +2422,7 @@
$query_strategy_part = "true";
}
- if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
- $date_sort_field = "updated";
- } else {
- $date_sort_field = "date_entered";
- }
-
- $order_by = "$date_sort_field DESC, updated DESC";
+ $order_by = "score DESC, date_entered DESC, updated DESC";
if ($view_mode == "unread_first") {
$order_by = "unread DESC, $order_by";