Browse Source

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
tags/3.0.0
Jean-Philippe Lang 9 years ago
parent
commit
b1e105abe2
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      app/controllers/roles_controller.rb
  2. 1
    1
      app/views/roles/index.html.erb

+ 1
- 1
app/controllers/roles_controller.rb 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

+ 1
- 1
app/views/roles/index.html.erb 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">

Loading…
Cancel
Save