mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Ensure that values of multi-value fields are HTML-escaped in issue history (#27186).
Patch by Holger Just. git-svn-id: http://svn.redmine.org/redmine/trunk@16985 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
56c8ee0440
commit
94f7cfbf99
@ -177,7 +177,8 @@ module ApplicationHelper
|
||||
end
|
||||
case object.class.name
|
||||
when 'Array'
|
||||
object.map {|o| format_object(o, html)}.join(', ').html_safe
|
||||
formatted_objects = object.map {|o| format_object(o, html)}
|
||||
html ? safe_join(formatted_objects, ', ') : formatted_objects.join(', ')
|
||||
when 'Time'
|
||||
format_time(object)
|
||||
when 'Date'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user