@cached_label_priority ||= l(:field_priority)
@cached_label_project ||= l(:field_project)
- link_to_issue(issue) + "<br /><br />" +
+ (link_to_issue(issue) + "<br /><br />" +
"<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />" +
"<strong>#{@cached_label_status}</strong>: #{h(issue.status.name)}<br />" +
"<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
"<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
"<strong>#{@cached_label_assigned_to}</strong>: #{h(issue.assigned_to)}<br />" +
- "<strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}"
+ "<strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}").html_safe
end
def issue_heading(issue)