diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 19:27:18 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 19:27:18 +0000 |
commit | 86d2b223cc75c1016f4afec6bf24656fbbb2974c (patch) | |
tree | 8ad7a927d141c4b82c27241f0969f0494e82b358 /app/views/custom_fields | |
parent | 805c65f55d8abed3a34a747d4739d0cca2f30a41 (diff) | |
download | redmine-86d2b223cc75c1016f4afec6bf24656fbbb2974c.tar.gz redmine-86d2b223cc75c1016f4afec6bf24656fbbb2974c.zip |
Fixed reorder links on custom fields.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8184 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/_index.html.erb b/app/views/custom_fields/_index.html.erb index 1adbcaa08..3740987ca 100644 --- a/app/views/custom_fields/_index.html.erb +++ b/app/views/custom_fields/_index.html.erb @@ -20,7 +20,7 @@ <td align="center"><%= checked_image custom_field.is_for_all? %></td> <td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td> <% end %> - <td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'edit', :id => custom_field}) %></td> + <td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td> <td class="buttons"> <%= link_to(l(:button_delete), custom_field_path(custom_field), :method => :delete, |