X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5e407dfb34f47e6fbbbf3c11c1a8318256abb5cd..627f2493faa77336e7dcb13abb92dc547ee4db9f:/app/views/messages/show.html.erb?ds=sidebyside
diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb
index e3634e232..7cf674fef 100644
--- a/app/views/messages/show.html.erb
+++ b/app/views/messages/show.html.erb
@@ -1,11 +1,11 @@
<% if current_user == @message.recipient %>
<% content_for :heading do %>
-
<%= user_thumbnail_tiny @message.sender %>
- <%= link_to h(@message.sender.display_name), user_path(@message.sender) %>
+ <%= link_to @message.sender.display_name, user_path(@message.sender) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -14,17 +14,19 @@
<%= @message.body.to_html %>
- <%= button_to t('.reply_button'), message_reply_path(@message), :class => 'reply-button' %>
- <%= button_to t('.unread_button'), message_mark_path(@message, :mark => 'unread'), :class => 'mark-unread-button' %>
- <%= button_to t('.destroy_button'), message_path(@message), :method => 'delete', :class => 'destroy-button' %>
+ <%= button_to t(".reply_button"), message_reply_path(@message), :class => "reply-button" %>
+ <%= button_to t(".unread_button"), message_mark_path(@message, :mark => "unread"), :class => "mark-unread-button" %>
+ <%= button_to t(".destroy_button"), message_path(@message), :method => "delete", :class => "destroy-button" %>
+ <%= link_to t(".back"), inbox_messages_path, :class => "button deemphasize" %>
+
<% else %>
-
<%= h(@message.title) %>
+
<%= @message.title %>
<%= user_thumbnail_tiny @message.recipient %>
- <%= link_to h(@message.recipient.display_name), user_path(@message.recipient) %>
+ <%= link_to @message.recipient.display_name, user_path(@message.recipient) %>
<%= l @message.sent_on, :format => :friendly %>
@@ -33,8 +35,7 @@
<%= @message.body.to_html %>
+ <%= link_to t(".back"), outbox_messages_path, :class => "button deemphasize" %>
+
<% end %>
-
- <%= link_to t('.back'), outbox_messages_path, :class => "button deemphasize" %>
-