mirror of
https://github.com/redmine/redmine.git
synced 2026-07-07 20:13:55 +02: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:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user