Commit fc31ed1cb293e6e8fea85e04c0509e8df4f05fd1
1 parent
7b774bac
Exists in
master
and in
29 other branches
Small fix for SearchHelper
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/search_helper.rb
... | ... | @@ -19,7 +19,7 @@ module SearchHelper |
19 | 19 | ], |
20 | 20 | :articles => ActiveSupport::OrderedHash[ :none, {:label => _('Relevance')}, |
21 | 21 | :name, {:label => _('Name'), :solr_opts => {:sort => 'name_sortable asc'}}, |
22 | - :name, {:label => _('Most recent'), :solr_opts => {:sort => 'updated_at desc, score desc'}}, | |
22 | + :more_recent, {:label => _('More recent'), :solr_opts => {:sort => 'updated_at desc, score desc'}}, | |
23 | 23 | ], |
24 | 24 | :enterprises => ActiveSupport::OrderedHash[ :none, {:label => _('Relevance')}, |
25 | 25 | :name, {:label => _('Name'), :solr_opts => {:sort => 'name_sortable asc'}}, | ... | ... |