aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Landauer <matthew@openaustralia.org>2013-02-11 18:55:55 +1100
committerMatthew Landauer <matthew@openaustralia.org>2013-02-11 18:55:55 +1100
commitedb4657629002d8184cc1cd130737143a08049de (patch)
tree8d22da8377ecc69db00d735e6da1e37ab6271341
parent5f063b8e22ed35525fc552beb6a4042cfa2b7e5a (diff)
Don't escape link html on foi email display page
-rw-r--r--app/views/public_body/view_email.rhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/public_body/view_email.rhtml b/app/views/public_body/view_email.rhtml
index 50601069f..79d7f7f4c 100644
--- a/app/views/public_body/view_email.rhtml
+++ b/app/views/public_body/view_email.rhtml
@@ -25,9 +25,9 @@
<p>
<% if @public_body.is_requestable? || @public_body.not_requestable_reason != 'bad_contact' %>
- <%= _('If the address is wrong, or you know a better address, please <a href="%s">contact us</a>.')% [help_contact_path]%>
+ <%= raw _('If the address is wrong, or you know a better address, please <a href="%s">contact us</a>.')% [help_contact_path]%>
<% else %>
- <%= _(' If you know the address to use, then please <a href="%s">send it to us</a>.
+ <%= raw _(' If you know the address to use, then please <a href="%s">send it to us</a>.
You may be able to find the address on their website, or by phoning them up and asking.')% [help_contact_path] %>
<% end %>
</p>