diff options
Diffstat (limited to 'app/views/reports/_details.rhtml')
-rw-r--r-- | app/views/reports/_details.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/reports/_details.rhtml b/app/views/reports/_details.rhtml index c9cd88bb8..7b565a325 100644 --- a/app/views/reports/_details.rhtml +++ b/app/views/reports/_details.rhtml @@ -6,7 +6,7 @@ <thead><tr> <th style="width:25%"></th> <% for status in @statuses %> -<th style="width:<%= col_width %>%"><%= status.name %></th> +<th style="width:<%= col_width %>%"><%=h status.name %></th> <% end %> <th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></th> <th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></th> @@ -15,7 +15,7 @@ <tbody> <% for row in rows %> <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to row.name, :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), + <td><%= link_to h(row.name), :controller => 'issues', :action => 'index', :project_id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, :subproject_id => '!*', "#{field_name}" => row.id %></td> |