diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8966e949b..00f385de1 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -176,7 +176,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' diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb index 3e45d635e..b689227ac 100644 --- a/app/helpers/queries_helper.rb +++ b/app/helpers/queries_helper.rb @@ -129,7 +129,8 @@ module QueriesHelper def column_content(column, issue) value = column.value_object(issue) if value.is_a?(Array) - value.collect {|v| column_value(column, issue, v)}.compact.join(', ').html_safe + values = value.collect {|v| column_value(column, issue, v)}.compact + safe_join(values, ', ') else column_value(column, issue, value) end diff --git a/app/views/timelog/_list.html.erb b/app/views/timelog/_list.html.erb index 7ec60cdbd..88e79febc 100644 --- a/app/views/timelog/_list.html.erb +++ b/app/views/timelog/_list.html.erb @@ -18,7 +18,9 @@ <% entries.each do |entry| -%>