]> source.dussan.org Git - redmine.git/commitdiff
Fixed: issue description Quote button lost by r3941 (#7122).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 18 Dec 2010 13:40:50 +0000 (13:40 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 18 Dec 2010 13:40:50 +0000 (13:40 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4530 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/show.rhtml
test/functional/issues_controller_test.rb

index 0fa1076e580f65131692edb2feaedc4c4f3703da..cfe0288ffbd4dee308f1ba54b6d716bd1bbaeca6 100644 (file)
@@ -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>
index 3aeb95bd2b8c767445eabaaf155bbaa8dfb2b81d..b21b28e6698b022b76a20ac6e5385e04b6aafa37 100644 (file)
@@ -281,6 +281,9 @@ class IssuesControllerTest < ActionController::TestCase
     get :show, :id => 1
     assert_response :success
     
+    assert_tag :tag => 'a',
+      :content => /Quote/
+    
     assert_tag :tag => 'form',
                :descendant => { :tag => 'fieldset',
                                 :child => { :tag => 'legend',