diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/issues_helper.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 03bc60355..49d734452 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -48,13 +48,13 @@ module IssuesHelper @cached_label_priority ||= l(:field_priority) @cached_label_project ||= l(:field_project) - (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)}").html_safe + link_to_issue(issue) + "<br /><br />".html_safe + + "<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />".html_safe + + "<strong>#{@cached_label_status}</strong>: #{h(issue.status.name)}<br />".html_safe + + "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />".html_safe + + "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />".html_safe + + "<strong>#{@cached_label_assigned_to}</strong>: #{h(issue.assigned_to)}<br />".html_safe + + "<strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}".html_safe end def issue_heading(issue) |