From: Jean-Philippe Lang Date: Sat, 10 Jan 2015 21:10:18 +0000 (+0000) Subject: Merged r13852 and r13853 (#18769). X-Git-Tag: 2.6.1~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f2ee9ccb1b45b84419a9757587298492ec4476a5;p=redmine.git Merged r13852 and r13853 (#18769). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@13866 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/issue_statuses_controller.rb b/app/controllers/issue_statuses_controller.rb index d305dedd7..375e7e13e 100644 --- a/app/controllers/issue_statuses_controller.rb +++ b/app/controllers/issue_statuses_controller.rb @@ -56,7 +56,7 @@ class IssueStatusesController < ApplicationController @issue_status = IssueStatus.find(params[:id]) if @issue_status.update_attributes(params[:issue_status]) flash[:notice] = l(:notice_successful_update) - redirect_to issue_statuses_path + redirect_to issue_statuses_path(:page => params[:page]) else render :action => 'edit' end diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb index 8a976779e..61de2076d 100644 --- a/app/controllers/roles_controller.rb +++ b/app/controllers/roles_controller.rb @@ -71,7 +71,7 @@ class RolesController < ApplicationController def update if request.put? and @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 diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb index 02274d0d3..d5b5e71a9 100644 --- a/app/controllers/trackers_controller.rb +++ b/app/controllers/trackers_controller.rb @@ -64,7 +64,7 @@ class TrackersController < ApplicationController @tracker = Tracker.find(params[:id]) if @tracker.update_attributes(params[:tracker]) flash[:notice] = l(:notice_successful_update) - redirect_to trackers_path + redirect_to trackers_path(:page => params[:page]) return end edit diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb index 659dd18fa..edec0bf75 100644 --- a/app/views/issue_statuses/index.html.erb +++ b/app/views/issue_statuses/index.html.erb @@ -25,7 +25,7 @@ <% end %> <%= checked_image status.is_default? %> <%= checked_image status.is_closed? %> - <%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %> + <%= reorder_links('issue_status', {:action => 'update', :id => status, :page => params[:page]}, :put) %> <%= delete_link issue_status_path(status) %> diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb index 9eaab23b6..19a6c42c4 100644 --- a/app/views/roles/index.html.erb +++ b/app/views/roles/index.html.erb @@ -17,7 +17,7 @@ <%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %> <% unless role.builtin? %> - <%= reorder_links('role', {:action => 'update', :id => role}, :put) %> + <%= reorder_links('role', {:action => 'update', :id => role, :page => params[:page]}, :put) %> <% end %> diff --git a/app/views/trackers/index.html.erb b/app/views/trackers/index.html.erb index d1928e989..64f06fc5c 100644 --- a/app/views/trackers/index.html.erb +++ b/app/views/trackers/index.html.erb @@ -24,7 +24,7 @@ <% end %> - <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %> + <%= reorder_links('tracker', {:action => 'update', :id => tracker, :page => params[:page]}, :put) %> <%= delete_link tracker_path(tracker) %>