diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/versions/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index e8acb3d01..a426061fa 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -17,12 +17,12 @@ <% form_tag({}) do -%> <table class="list related-issues"> <caption><%= l(:label_related_issues) %></caption> - <%- issues.each do |issue| -%> + <% issues.each do |issue| -%> <tr class="hascontextmenu"> <td class="checkbox"><%= check_box_tag 'ids[]', issue.id %></td> <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td> </tr> - <%- end -%> + <% end -%> </table> <% end %> <% end %> |