aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJody McIntyre <scjody@modernduck.com>2013-07-17 18:05:14 -0400
committerJody McIntyre <scjody@modernduck.com>2013-07-17 18:05:14 -0400
commit056dbf6a938a274744515d4e217167086f1b9887 (patch)
tree154e6394dc85fedd5a3b846b213c43f682a77a00 /lib
parent853701441060c56a0072d3523dd47fb2658cac18 (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.erb2
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 %>
-------------------------------------------------------------------