summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-01-07 22:56:34 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-01-07 22:56:34 +0000
commitfec68fcfc1d1aa32e111fa4c1a05887e0057aa67 (patch)
tree3787ca5ca1652ad2f151251e04d008213d1d5433 /app/views
parentb1e105abe2a2bcad90b1e61ae64fd8bb4dbec588 (diff)
downloadredmine-fec68fcfc1d1aa32e111fa4c1a05887e0057aa67.tar.gz
redmine-fec68fcfc1d1aa32e111fa4c1a05887e0057aa67.zip
Same fix as r13582 for trackers and statuses (#18769).
git-svn-id: http://svn.redmine.org/redmine/trunk@13853 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/issue_statuses/index.html.erb2
-rw-r--r--app/views/trackers/index.html.erb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb
index d4a2ecbb2..81c34f703 100644
--- a/app/views/issue_statuses/index.html.erb
+++ b/app/views/issue_statuses/index.html.erb
@@ -23,7 +23,7 @@
<td><%= h status.default_done_ratio %></td>
<% end %>
<td><%= checked_image status.is_closed? %></td>
- <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td>
+ <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status, :page => params[:page]}, :put) %></td>
<td class="buttons">
<%= delete_link issue_status_path(status) %>
</td>
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 %>
</td>
<td class="reorder">
- <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %>
+ <%= reorder_links('tracker', {:action => 'update', :id => tracker, :page => params[:page]}, :put) %>
</td>
<td class="buttons">
<%= delete_link tracker_path(tracker) %>