##// END OF EJS Templates
Minor fix to the archive
neko259 -
r549:f618aa60 1.7-dev
parent child Browse files
Show More
@@ -7,4 +7,4 b' from boards.views.all_threads import All'
7 class ArchiveView(AllThreadsView):
7 class ArchiveView(AllThreadsView):
8
8
9 def get_threads(self):
9 def get_threads(self):
10 return Thread.objects.filter(archived=True) No newline at end of file
10 return Thread.objects.filter(archived=True).order_by('-bump_time')
General Comments 0
You need to be logged in to leave comments. Login now