Rails3: use String#html_safe for render_issue_tooltip() at IssuesHelper.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6495 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
40a1dbc8d5
commit
2794019d64
|
@ -46,13 +46,13 @@ module IssuesHelper
|
|||
@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)
|
||||
|
|
Loading…
Reference in New Issue