summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/changelog.rhtml2
-rw-r--r--app/views/projects/roadmap.rhtml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/changelog.rhtml b/app/views/projects/changelog.rhtml
index 355a3034a..9fe1069d3 100644
--- a/app/views/projects/changelog.rhtml
+++ b/app/views/projects/changelog.rhtml
@@ -11,7 +11,7 @@
<% end %>
<p><%=h version.description %></p>
<% issues = version.fixed_issues.find(:all,
- :include => [:status, :tracker],
+ :include => [:status, :tracker, :priority],
:conditions => ["#{IssueStatus.table_name}.is_closed=? AND #{Issue.table_name}.tracker_id in (#{@selected_tracker_ids.join(',')})", true],
:order => "#{Tracker.table_name}.position") unless @selected_tracker_ids.empty?
issues ||= []
diff --git a/app/views/projects/roadmap.rhtml b/app/views/projects/roadmap.rhtml
index cbad932df..00d4a215c 100644
--- a/app/views/projects/roadmap.rhtml
+++ b/app/views/projects/roadmap.rhtml
@@ -11,7 +11,7 @@
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
<% issues = version.fixed_issues.find(:all,
- :include => [:status, :tracker],
+ :include => [:status, :tracker, :priority],
:conditions => ["tracker_id in (#{@selected_tracker_ids.join(',')})"],
:order => "#{Tracker.table_name}.position, #{Issue.table_name}.id") unless @selected_tracker_ids.empty?
issues ||= []