diff options
author | Go MAEDA <maeda@farend.jp> | 2024-11-04 04:57:45 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-11-04 04:57:45 +0000 |
commit | 764af6c040e9060297a03dbde29e81968fa55d27 (patch) | |
tree | 8242cbc6d8cc2b07483e32408ea401bc8b8d3e01 /app | |
parent | 2e0c569b4f6cf6056d6cf31b70388b89c4a6b459 (diff) | |
parent | 45bcea9805fd1d22c61abc46b0512e4babf5e1f5 (diff) | |
download | redmine-764af6c040e9060297a03dbde29e81968fa55d27.tar.gz redmine-764af6c040e9060297a03dbde29e81968fa55d27.zip |
Merged r23209 and r23210 from trunk to 6.0-stable (#12521).
git-svn-id: https://svn.redmine.org/redmine/branches/6.0-stable@23211 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/trackers_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb index 824ce93ef..f2d8e3873 100644 --- a/app/controllers/trackers_controller.rb +++ b/app/controllers/trackers_controller.rb @@ -91,7 +91,7 @@ class TrackersController < ApplicationController unless @tracker.issues.empty? projects = Project.joins(:issues).where(issues: {tracker_id: @tracker.id}).sorted.distinct links = projects.map do |p| - view_context.link_to(p, project_issues_path(p, set_filter: 1, tracker_id: @tracker.id)) + view_context.link_to(p, project_issues_path(p, set_filter: 1, tracker_id: @tracker.id, status_id: '*')) end.join(', ') flash[:error] = l(:error_can_not_delete_tracker_html, projects: links.html_safe) else |