diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-12 17:12:05 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-12 17:12:05 +0000 |
commit | a8cf13e8c8fb60d001ce44defda4988305f8d865 (patch) | |
tree | 693e8ed8ee435d003e6ec2245562cbdcdd948e8a /app | |
parent | ac60fc9c1c587ba1f600c7d17723d2b88f2b6bed (diff) | |
download | redmine-a8cf13e8c8fb60d001ce44defda4988305f8d865.tar.gz redmine-a8cf13e8c8fb60d001ce44defda4988305f8d865.zip |
Restores the issue description label (#6677).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4506 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/show.rhtml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 9d0f2257a..0fa1076e5 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -47,14 +47,16 @@ <% 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 -%> |