marks participants list as html_safe

pull/6827/head
Jens Ulferts 12 years ago
parent 3f3eb3fdfa
commit f0a3822c66
  1. 2
      app/helpers/meetings_helper.rb

@ -1,5 +1,5 @@
module MeetingsHelper
def format_participant_list(participants)
participants.sort.collect{|p| link_to_user p.user}.join("; ")
participants.sort.collect{|p| link_to_user p.user}.join("; ").html_safe
end
end

Loading…
Cancel
Save