diff --git a/app/controllers/tag_corrections_controller.rb b/app/controllers/tag_corrections_controller.rb index 43319da2d..1959e4556 100644 --- a/app/controllers/tag_corrections_controller.rb +++ b/app/controllers/tag_corrections_controller.rb @@ -1,5 +1,5 @@ class TagCorrectionsController < ApplicationController - before_filter :member_only + before_filter :builder_only def new @correction = TagCorrection.new(params[:tag_id]) diff --git a/app/controllers/tags_controller.rb b/app/controllers/tags_controller.rb index 7a25bb83e..0b8c8022d 100644 --- a/app/controllers/tags_controller.rb +++ b/app/controllers/tags_controller.rb @@ -1,5 +1,5 @@ class TagsController < ApplicationController - before_filter :member_only, :only => [:edit, :update] + before_filter :builder_only, :only => [:edit, :update] respond_to :html, :xml, :json def edit diff --git a/app/views/tags/index.html.erb b/app/views/tags/index.html.erb index 350cbd619..3b78ca6e1 100644 --- a/app/views/tags/index.html.erb +++ b/app/views/tags/index.html.erb @@ -17,9 +17,11 @@ <%= link_to(tag.name, posts_path(:tags => tag.name)) %>