summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/issues/move.rhtml6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/issues/move.rhtml b/app/views/issues/move.rhtml
index e1189db45..b0602f681 100644
--- a/app/views/issues/move.rhtml
+++ b/app/views/issues/move.rhtml
@@ -1,6 +1,10 @@
<h2><%= l(:button_move) %></h2>
-<ul><%= @issues.collect {|i| content_tag('li', link_to(h("#{i.tracker} ##{i.id}"), { :action => 'show', :id => i }) + h(": #{i.subject}")) }.join("\n") %></ul>
+<ul>
+<% @issues.each do |issue| -%>
+ <li><%= link_to_issue issue %></li>
+<% end -%>
+</ul>
<% form_tag({}, :id => 'move_form') do %>
<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>