diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-01-07 19:47:24 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-01-07 19:47:24 +0000 |
commit | bc270b31c3663bf621482bf86369b537b728fb1f (patch) | |
tree | e8a194e28910685a2369b95c2041ea66067a427a /app/views/issues/show.rhtml | |
parent | cd83f72da47f0b6e93a69de04f582c18fca20df8 (diff) | |
download | redmine-bc270b31c3663bf621482bf86369b537b728fb1f.tar.gz redmine-bc270b31c3663bf621482bf86369b537b728fb1f.zip |
Makes issue description a non-required field (#2456).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2246 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/show.rhtml')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index d5babe331..28d656667 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -59,7 +59,7 @@ end %> <hr /> <div class="contextual"> -<%= link_to_remote_if_authorized l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment' %> +<%= link_to_remote_if_authorized(l(:button_quote), { :url => {:action => 'reply', :id => @issue} }, :class => 'icon icon-comment') unless @issue.description.blank? %> </div> <p><strong><%=l(:field_description)%></strong></p> |