summaryrefslogtreecommitdiffstats
path: root/app/views/versions
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-08 13:06:19 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-08 13:06:19 +0000
commita66718239f36385d7f8ecc96d6d2537f4c9a575a (patch)
treeeffcac61a8fff0ed8a64c89c1cab6ec1a4a31035 /app/views/versions
parent31149700cb535ed7f14636c5063cc55d2a17e8dc (diff)
downloadredmine-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.erb2
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 -%>