From a66718239f36385d7f8ecc96d6d2537f4c9a575a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 8 Jan 2012 13:06:19 +0000 Subject: [PATCH] Do not generate duplicate ids. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8556 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/versions/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index 622da4cfb..9f150bd24 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -19,7 +19,7 @@ <%= l(:label_related_issues) %> <% issues.each do |issue| -%> - <%= check_box_tag 'ids[]', issue.id %> + <%= check_box_tag 'ids[]', issue.id, false, :id => nil %> <%= link_to_issue(issue, :project => (@project != issue.project)) %> <% end -%> -- 2.39.5