diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index d1d93da9..9d0f2257 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -44,18 +44,19 @@ <%= render_custom_fields_rows(@issue) %> <%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %> -
+<% if @issue.description? || @issue.attachments.any? -%> +
-<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') unless @issue.description.blank? %> +<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') if @issue.description? %>
-

<%=l(:field_description)%>

<%= textilizable @issue, :description, :attachments => @issue.attachments %>
<%= link_to_attachments @issue %> +<% end -%> <%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %>