diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-08 17:16:46 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-08 17:16:46 +0000 |
commit | 32b91e685e2d9412806458a5bd45ee1055c39934 (patch) | |
tree | 9ec8770faed5b7bbaa41d2fe25d779bca7620c9e /app | |
parent | f1b93601b599b08c72c6293ee25bf0ec0e504a4c (diff) | |
download | redmine-32b91e685e2d9412806458a5bd45ee1055c39934.tar.gz redmine-32b91e685e2d9412806458a5bd45ee1055c39934.zip |
Do not generate duplicate ids and fixes tag attribute.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8561 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/versions/show.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb index 52a4bed17..f23d83f1c 100644 --- a/app/views/versions/show.html.erb +++ b/app/views/versions/show.html.erb @@ -18,7 +18,7 @@ <table> <tr> <td width="130px" align="right"><%= l(:field_estimated_hours) %></td> - <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td> + <td width="240px" class="total-hours" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td> </tr> <% if User.current.allowed_to?(:view_time_entries, @project) %> <tr> @@ -41,7 +41,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 %> |