1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

Redirect to the current page when reordering roles (#18769).

Patch by Jérôme BATAILLE.

git-svn-id: http://svn.redmine.org/redmine/trunk@13852 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-01-07 22:52:23 +00:00
parent 0eda7765fa
commit b1e105abe2
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ class RolesController < ApplicationController
def update
if @role.update_attributes(params[:role])
flash[:notice] = l(:notice_successful_update)
redirect_to roles_path
redirect_to roles_path(:page => params[:page])
else
render :action => 'edit'
end

View File

@ -17,7 +17,7 @@
<td class="name"><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td>
<td class="reorder">
<% unless role.builtin? %>
<%= reorder_links('role', {:action => 'update', :id => role}, :put) %>
<%= reorder_links('role', {:action => 'update', :id => role, :page => params[:page]}, :put) %>
<% end %>
</td>
<td class="buttons">