diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-18 13:40:50 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-18 13:40:50 +0000 |
commit | 0c24f88ce1c72a0b551bb8dfd84bc35725545db6 (patch) | |
tree | 59b6dfff8d7ad9895ffb48a327fa2f548ebbaf27 /app | |
parent | df88dc117ff9676e1a4b38944d2388c029203353 (diff) | |
download | redmine-0c24f88ce1c72a0b551bb8dfd84bc35725545db6.tar.gz redmine-0c24f88ce1c72a0b551bb8dfd84bc35725545db6.zip |
Fixed: issue description Quote button lost by r3941 (#7122).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4530 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-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 0fa1076e5..cfe0288ff 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -49,7 +49,7 @@ <hr /> <% if @issue.description? %> <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 => {:controller => 'journals', :action => 'new', :id => @issue} }, :class => 'icon icon-comment') %> </div> <p><strong><%=l(:field_description)%></strong></p> |