diff options
Diffstat (limited to 'app/views/versions/index.html.erb')
-rw-r--r-- | app/views/versions/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <caption><%= l(:label_related_issues) %></caption> <% issues.each do |issue| -%> <tr class="hascontextmenu"> - <td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td> + <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td> <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> </tr> <% end -%> |