Commit 4615d072b38087c0836d13128073a1840b9c204d

Authored by Leandro Santos
1 parent 829a7963

should trust in task html code

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/add_member.rb
... ... @@ -56,7 +56,7 @@ class AddMember < Task
56 56 def target_notification_description
57 57 requestor_email = " (#{requestor.email})" if requestor.may_display_field_to?("email")
58 58  
59   - _("%{requestor}%{requestor_email} wants to be a member of '%{organization}'.") % {:requestor => requestor.name, :requestor_email => requestor_email, :organization => organization.name}
  59 + _("%{requestor}%{requestor_email} wants to be a member of '%{organization}'.").html_safe % {:requestor => requestor.name, :requestor_email => requestor_email, :organization => organization.name}
60 60 end
61 61  
62 62 def target_notification_message
... ...