diff options
Diffstat (limited to 'app/helpers/sort_helper.rb')
-rw-r--r-- | app/helpers/sort_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/sort_helper.rb b/app/helpers/sort_helper.rb index 7b7fbc8a3..4ea7b87b0 100644 --- a/app/helpers/sort_helper.rb +++ b/app/helpers/sort_helper.rb @@ -18,7 +18,7 @@ # # def list # sort_init 'last_name' -# sort_update %w(first_name, last_name) +# sort_update %w(first_name last_name) # @items = Contact.find_all nil, sort_clause # end # @@ -29,7 +29,7 @@ # # def list # sort_init 'last_name' -# sort_update %w(first_name, last_name) +# sort_update %w(first_name last_name) # @contact_pages, @items = paginate :contacts, # :order_by => sort_clause, # :per_page => 10 |