diff --git a/app/views/projects/roadmap.rhtml b/app/views/projects/roadmap.rhtml
index 0aac5a7e2..bb6cfcfe6 100644
--- a/app/views/projects/roadmap.rhtml
+++ b/app/views/projects/roadmap.rhtml
@@ -20,8 +20,12 @@
<%= format_date(version.effective_date) %>
<%=h version.description %>
- <% version.fixed_issues.find(:all, :conditions => ["issues.tracker_id in (#{@selected_tracker_ids.join(',')})"]).each do |issue| %>
- - <%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %>
+ <% version.fixed_issues.find(:all,
+ :include => :status,
+ :conditions => ["tracker_id in (#{@selected_tracker_ids.join(',')})"],
+ :order => "position").each do |issue| %>
+ - <%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %>
+ <%= content_tag "em", "(#{l(:label_closed_issues)})" if issue.status.is_closed? %>
<% end %>
<% end %>