diff options
author | Philip Arndt <parndt@gmail.com> | 2010-08-26 21:36:33 +1200 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-08-26 21:36:33 +1200 |
commit | 2a8e663495fd196286925717aa78c72e1f217a3f (patch) | |
tree | f1deaadb574e2f5e433fe06a391596fcbc677d65 /app/controllers | |
parent | c343dd2889402a5e0eca4d490fbd0fbf3c892b70 (diff) | |
download | refinerycms-blog-2a8e663495fd196286925717aa78c72e1f217a3f.tar.gz refinerycms-blog-2a8e663495fd196286925717aa78c72e1f217a3f.tar.bz2 refinerycms-blog-2a8e663495fd196286925717aa78c72e1f217a3f.zip |
Fix sorting
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/admin/blog/categories_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/blog/categories_controller.rb b/app/controllers/admin/blog/categories_controller.rb index 9682e3b..fe15a0b 100644 --- a/app/controllers/admin/blog/categories_controller.rb +++ b/app/controllers/admin/blog/categories_controller.rb @@ -2,6 +2,6 @@ class Admin::Blog::CategoriesController < Admin::BaseController crudify :blog_category, :title_attribute => :title, - :order => 'created_at DESC' + :order => 'title ASC' end |