diff options
author | Henare Degan <henare.degan@gmail.com> | 2015-04-27 14:57:41 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2015-04-27 15:21:05 +1000 |
commit | 9aa79b64d94e58cff8417504a8ad51de30e4c5fc (patch) | |
tree | b3dd9c23876403bb7911999e3f4cf96157c23afc /app | |
parent | bd234babdab099108283afc7d9a9019f36e067d4 (diff) |
Don't put HTML entities in very overdue alert 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 b6b16fd25..9f0bca4cb 100644 --- a/app/mailers/request_mailer.rb +++ b/app/mailers/request_mailer.rb @@ -125,7 +125,7 @@ class RequestMailer < ApplicationMailer mail(:from => contact_from_name_and_email, :to => user.name_and_email, - :subject => (_("You're long overdue a response to your FOI request - ") + info_request.title).html_safe) + :subject => _("You're long overdue a response to your FOI request - ") + info_request.title.html_safe) end # Tell the requester that they need to say if the new response |