diff --git a/app/models/tag_implication.rb b/app/models/tag_implication.rb index 74c59222c..4c0b0ae38 100644 --- a/app/models/tag_implication.rb +++ b/app/models/tag_implication.rb @@ -223,11 +223,9 @@ class TagImplication < ActiveRecord::Base def update_forum_topic_for_approve if forum_topic - CurrentUser.scoped(admin, "127.0.0.1") do - forum_topic.posts.create( - :body => "The tag implication #{antecedent_name} -> #{consequent_name} has been approved." - ) - end + forum_topic.posts.create( + :body => "The tag implication #{antecedent_name} -> #{consequent_name} has been approved." + ) end end