diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-11 18:06:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-11 18:06:38 +0000 |
commit | 5152771fdd59cee5369ba15c4946fa8a64fefe2a (patch) | |
tree | 9e313ce541376f95c559950adf0677a9452e0810 /app | |
parent | 913a806f9011ac3d47cd365d1c694660534f52f4 (diff) | |
download | redmine-5152771fdd59cee5369ba15c4946fa8a64fefe2a.tar.gz redmine-5152771fdd59cee5369ba15c4946fa8a64fefe2a.zip |
Fixed: 404 error when selecting an other project on issues/move.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1134 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/move.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/move.rhtml b/app/views/issues/move.rhtml index c74270f1a..35761e160 100644 --- a/app/views/issues/move.rhtml +++ b/app/views/issues/move.rhtml @@ -9,7 +9,7 @@ <p><label for="new_project_id"><%=l(:field_project)%> :</label> <%= select_tag "new_project_id", options_from_collection_for_select(@allowed_projects, 'id', 'name', @target_project.id), - :onchange => remote_function(:url => {:action => 'move' , :id => @project}, + :onchange => remote_function(:url => { :action => 'move' }, :method => :get, :update => 'content', :with => "Form.serialize('move_form')") %></p> |