Move 'best' sort to first in list

This commit is contained in:
Keith Mitchell
2012-08-15 16:52:05 -07:00
parent 70f4f79dad
commit 6bc99a48af

View File

@@ -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):