diff options
author | Jody McIntyre <scjody@modernduck.com> | 2013-07-17 18:05:14 -0400 |
---|---|---|
committer | Jody McIntyre <scjody@modernduck.com> | 2013-07-17 18:05:14 -0400 |
commit | 056dbf6a938a274744515d4e217167086f1b9887 (patch) | |
tree | 154e6394dc85fedd5a3b846b213c43f682a77a00 /lib | |
parent | 853701441060c56a0072d3523dd47fb2658cac18 (diff) |
Update initial_request.text.erb
Use the raw helper so that characters like ' are not HTML escaped in outgoing email messages. This is already done in the initial_request.text.erb shipped with Alaveteli.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/views/outgoing_mailer/initial_request.text.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/views/outgoing_mailer/initial_request.text.erb b/lib/views/outgoing_mailer/initial_request.text.erb index a172b41..f927ad2 100644 --- a/lib/views/outgoing_mailer/initial_request.text.erb +++ b/lib/views/outgoing_mailer/initial_request.text.erb @@ -1,4 +1,4 @@ -<%= @outgoing_message.body.strip %> +<%= raw @outgoing_message.body.strip %> ------------------------------------------------------------------- |