diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 2b417c7..aefe040 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -4,7 +4,7 @@ class ApplicationController < ActionController::Base before_filter :find_all_tags, :except => [:create] def find_all_tags - @tags = Tag.where("status='false'") + @tags = Tag.where("status='false'").order("name ASC") end protected