Signed-off-by: Alex Coles <alex@alexbcoles.com>
@ -20,7 +20,7 @@
module MeetingsHelper
def format_participant_list(participants)
participants.sort.collect { |p| link_to_user p.user }.join('; ').html_safe
participants.sort.map { |p| link_to_user p.user }.join('; ').html_safe
end
def render_meeting_journal(model, journal, options = {})