From 6bc99a48afa8fdbea06cb9286fe488d0613e8db7 Mon Sep 17 00:00:00 2001 From: Keith Mitchell Date: Wed, 15 Aug 2012 16:52:05 -0700 Subject: [PATCH] Move 'best' sort to first in list --- r2/r2/lib/menus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/lib/menus.py b/r2/r2/lib/menus.py index c4eef6913..37c018702 100644 --- a/r2/r2/lib/menus.py +++ b/r2/r2/lib/menus.py @@ -460,7 +460,7 @@ class ProfileSortMenu(SortMenu): class CommentSortMenu(SortMenu): """Sort menu for comments pages""" default = 'confidence' - options = ('hot', 'new', 'controversial', 'top', 'old', 'confidence') + options = ('confidence', 'top', 'new', 'hot', 'controversial', 'old') use_post = True class SearchSortMenu(SortMenu):