diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-15 22:49:03 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-15 22:49:03 +0000 |
commit | 84dd4ecbd4a0b5639eda9875306db6b501aba161 (patch) | |
tree | 2f75d5cf71ca3d2d3ac405010d4ae2420fe82255 /app/views/journals | |
parent | f7618160ad0178b4ce2eb624cd0771acad227887 (diff) | |
download | redmine-84dd4ecbd4a0b5639eda9875306db6b501aba161.tar.gz redmine-84dd4ecbd4a0b5639eda9875306db6b501aba161.zip |
route: split issue preview route to adding and editing
"No route matches" error raises in "preview_issue_path"
at app/views/issues/new.html.erb:35 on Rails 3.0.11 and Rails 3.1.3 new route format.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8886 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/journals')
-rw-r--r-- | app/views/journals/_notes_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/journals/_notes_form.html.erb b/app/views/journals/_notes_form.html.erb index ef95f9df9..f1311ac3b 100644 --- a/app/views/journals/_notes_form.html.erb +++ b/app/views/journals/_notes_form.html.erb @@ -7,7 +7,7 @@ <%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %> <p><%= submit_tag l(:button_save) %> <%= link_to_remote l(:label_preview), - { :url => preview_issue_path(:project_id => @project, :id => @journal.issue), + { :url => preview_edit_issue_path(:project_id => @project, :id => @journal.issue), :method => 'post', :update => "journal_#{@journal.id}_preview", :with => "Form.serialize('journal-#{@journal.id}-form')", |