]> git.openstreetmap.org Git - rails.git/commitdiff
Don't escape anything in text/plain message notifications
authorTom Hughes <tom@compton.nu>
Sat, 3 Dec 2011 17:58:21 +0000 (17:58 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 3 Dec 2011 17:58:21 +0000 (17:58 +0000)
app/views/notifier/message_notification.text.erb

index 7a495e648a48a9a81c7d4d2aa4da4eaf18f0ec9d..25b3c0498d3c4090e1d2b4f6308fea8460c29d37 100644 (file)
@@ -1,10 +1,10 @@
-<%= t'notifier.message_notification.hi', :to_user => @to_user %> 
+<%= raw t'notifier.message_notification.hi', :to_user => @to_user %> 
 
 
-<%= t'notifier.message_notification.header', :from_user => @from_user, :subject => @title %>
+<%= raw t'notifier.message_notification.header', :from_user => @from_user, :subject => @title %>
 
 ==
 <%= raw @text %>
 ==
 
 
 ==
 <%= raw @text %>
 ==
 
-<%= t'notifier.message_notification.footer1', :readurl => @readurl %>
-<%= t'notifier.message_notification.footer2', :replyurl => @replyurl %>
+<%= raw t'notifier.message_notification.footer1', :readurl => @readurl %>
+<%= raw t'notifier.message_notification.footer2', :replyurl => @replyurl %>