diff --git a/app/controllers/meetings_controller.rb b/app/controllers/meetings_controller.rb index 9859a9b41f..6ecee4ab92 100644 --- a/app/controllers/meetings_controller.rb +++ b/app/controllers/meetings_controller.rb @@ -81,6 +81,10 @@ class MeetingsController < ApplicationController def new end + current_menu_item :new do + :meetings + end + def copy params[:copied_from_meeting_id] = @meeting.id params[:copied_meeting_agenda_text] = @meeting.agenda.text if @meeting.agenda.present? diff --git a/app/services/meeting_notification_service.rb b/app/services/meeting_notification_service.rb index 3a448e552e..d578409fb7 100644 --- a/app/services/meeting_notification_service.rb +++ b/app/services/meeting_notification_service.rb @@ -25,7 +25,7 @@ class MeetingNotificationService MeetingMailer.send(action, content, content_type, recipient.mail).deliver_now rescue => e Rails.logger.error { - "Failed to deliver icalendar notification to #{recipient.login}: #{e.message}" + "Failed to deliver #{action} notification to #{recipient.mail}: #{e.message}" } recipients_with_errors << recipient end diff --git a/app/views/meeting_mailer/content_for_review.html.erb b/app/views/meeting_mailer/content_for_review.html.erb index c77e54089d..0ff3d4287b 100644 --- a/app/views/meeting_mailer/content_for_review.html.erb +++ b/app/views/meeting_mailer/content_for_review.html.erb @@ -23,7 +23,7 @@ See doc/COPYRIGHT.md for more details. <%= @meeting.author %>