]> source.dussan.org Git - redmine.git/commitdiff
Hides the "Replies" heading below a message if there is no reply (#1350).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Jun 2008 15:14:09 +0000 (15:14 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Jun 2008 15:14:09 +0000 (15:14 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1495 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/messages/show.rhtml

index 251b7c7a5f340a56676cb5b592cf3da9d7247787..c04c40934229772416b62d93c6cde84560a3e441 100644 (file)
@@ -17,6 +17,7 @@
 </div>
 <br />
 
+<% unless @replies.empty? %>
 <h3 class="icon22 icon22-comment"><%= l(:label_reply_plural) %></h3>
 <% @replies.each do |message| %>
   <a name="<%= "message-#{message.id}" %>"></a>
@@ -30,6 +31,7 @@
   <%= link_to_attachments message.attachments, :no_author => true %>
   </div>
 <% end %>
+<% end %>
 
 <% if !@topic.locked? && authorize_for('messages', 'reply') %>
 <p><%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %></p>