summaryrefslogtreecommitdiffstats
path: root/app/views/messages/show.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/messages/show.rhtml')
-rw-r--r--app/views/messages/show.rhtml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml
index 3e546ceea..772f0653e 100644
--- a/app/views/messages/show.rhtml
+++ b/app/views/messages/show.rhtml
@@ -1,16 +1,17 @@
<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> &#187; <%=h @message.subject %></h2>
-<p><em><%= @message.author.name %>, <%= format_time(@message.created_on) %></em></p>
+<p><span class="author"><%= authoring @message.created_on, @message.author %></span></p>
<div class="wiki">
<%= textilizable(@message.content, :attachments => @message.attachments) %>
</div>
<%= link_to_attachments @message.attachments, :no_author => true %>
+<br />
<h3 class="icon22 icon22-comment"><%= l(:label_reply_plural) %></h3>
<% @message.children.each do |message| %>
<a name="<%= "message-#{message.id}" %>"></a>
<h4><%=h message.subject %> - <%= message.author.name %>, <%= format_time(message.created_on) %></h4>
- <div class="wiki"><p><%= textilizable message.content %></p></div>
+ <div class="wiki"><%= textilizable message.content %></div>
<% end %>
<% if authorize_for('messages', 'reply') %>