]> source.dussan.org Git - redmine.git/commitdiff
Restores the issue description label (#6677).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Dec 2010 17:12:05 +0000 (17:12 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Dec 2010 17:12:05 +0000 (17:12 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4506 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/show.rhtml

index 9d0f2257a3baa77878c51b3a3f9d0daa56416add..0fa1076e580f65131692edb2feaedc4c4f3703da 100644 (file)
 
 <% if @issue.description? || @issue.attachments.any? -%>
 <hr />
-<div class="contextual">
-<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') if @issue.description? %>
-</div>
-                              
-<div class="wiki">
-<%= textilizable @issue, :description, :attachments => @issue.attachments %>
-</div>
-
+<% if @issue.description? %>
+       <div class="contextual">
+       <%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') %>
+       </div>
+       
+       <p><strong><%=l(:field_description)%></strong></p>
+       <div class="wiki">
+       <%= textilizable @issue, :description, :attachments => @issue.attachments %>
+       </div>
+<% end %>
 <%= link_to_attachments @issue %>
 <% end -%>