From c81e028462085af46a4fa797beeb0bba17d937f9 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Tue, 25 Aug 2015 16:37:06 -0700 Subject: [PATCH] fix typo --- app/models/tag_implication.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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