diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-08 13:06:19 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-08 13:06:19 +0000 |
commit | a66718239f36385d7f8ecc96d6d2537f4c9a575a (patch) | |
tree | effcac61a8fff0ed8a64c89c1cab6ec1a4a31035 /app/views/versions | |
parent | 31149700cb535ed7f14636c5063cc55d2a17e8dc (diff) | |
download | redmine-a66718239f36385d7f8ecc96d6d2537f4c9a575a.tar.gz redmine-a66718239f36385d7f8ecc96d6d2537f4c9a575a.zip |
Do not generate duplicate ids.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8556 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-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 -%> |