use creation date as default sort column (#4433)

This commit is contained in:
Frédéric Péters 2014-03-14 10:37:36 +01:00
parent f90e84bef7
commit cfeb7b0695
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ class ISearchForm(Interface):
required=False,
)
sort_on = schema.TextLine(default=u'sortable_title')
sort_reversed = schema.Bool(default=False)
sort_on = schema.TextLine(default=u'created')
sort_reversed = schema.Bool(default=True)
title = schema.TextLine(title=_(u'Title'), required=True)