diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-04 19:40:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-04 19:40:54 +0000 |
commit | e950c9db5af98a25675d7a1edd46bba742921423 (patch) | |
tree | 823b28cd2ce0eecf00e9393f6846ede33d16f718 /app | |
parent | b86a748b1d3a41fa328e4e1f61cdf1acee8137f6 (diff) | |
download | redmine-e950c9db5af98a25675d7a1edd46bba742921423.tar.gz redmine-e950c9db5af98a25675d7a1edd46bba742921423.zip |
Removed leading dash in ruby code.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6181 e93f8b46-1217-0410-a6f0-8f06a7374b81
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 %> |