summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-05-05 15:55:50 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-05-05 15:55:50 +0000
commit71e6f22670fed199d21564c9845d251bdb8c0337 (patch)
tree97846209e294d3f0e9edf74aa58c99a5b4903468 /app/views/projects
parent0dbbf776c6d65f9e2a1dcc2484871f6cd397015e (diff)
downloadredmine-71e6f22670fed199d21564c9845d251bdb8c0337.tar.gz
redmine-71e6f22670fed199d21564c9845d251bdb8c0337.zip
Issue#long_id no more used and removed
git-svn-id: http://redmine.rubyforge.org/svn/trunk@510 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/move_issues.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/move_issues.rhtml b/app/views/projects/move_issues.rhtml
index 57fc51e49..fd8edb208 100644
--- a/app/views/projects/move_issues.rhtml
+++ b/app/views/projects/move_issues.rhtml
@@ -6,7 +6,7 @@
<div class="box">
<p><label><%= l(:label_issue_plural) %>:</label>
<% for issue in @issues %>
- <b><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></b> - <%=h issue.subject %>
+ <%= link_to_issue issue %>: <%=h issue.subject %>
<%= hidden_field_tag "issue_ids[]", issue.id %><br />
<% end %>
<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p>