diff options
author | Henare Degan <henare.degan@gmail.com> | 2015-04-27 14:46:39 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2015-04-27 15:20:39 +1000 |
commit | b0445596de6f4d3c8429ef21f99f6c9eb760dbac (patch) | |
tree | e0903c90b4a1a98422315baf9989c708153cd033 /app | |
parent | d329f7b3606fca4f0d5261a06f79a13012a018b2 (diff) |
Don't put HTML entities in requires admin email subject lines
Diffstat (limited to 'app')
-rw-r--r-- | app/mailers/request_mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/request_mailer.rb b/app/mailers/request_mailer.rb index 1f6187206..5461d2aae 100644 --- a/app/mailers/request_mailer.rb +++ b/app/mailers/request_mailer.rb @@ -64,7 +64,7 @@ class RequestMailer < ApplicationMailer mail(:from => user.name_and_email, :to => contact_from_name_and_email, - :subject => _("FOI response requires admin ({{reason}}) - {{title}}", :reason => info_request.described_state, :title => info_request.title).html_safe) + :subject => _("FOI response requires admin ({{reason}}) - {{title}}", :reason => info_request.described_state, :title => info_request.title.html_safe)) end # Tell the requester that a new response has arrived |