diff --git a/NEWS b/NEWS index 4c027c916..b021aa924 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,7 @@ Bug fixes - [web] fixed CAS session timeout handling during XHR requests (#4468) - [web] reflect active locale in HTML lang attribute (#4660) - [web] allow scroll of login page on small screen (#4035) + - [web] fixed saving of email address for external calendar notifications (#4630) - [core] ignore transparent events in time conflict validation (#4539) - [core] fixed yearly recurrence calculator when starting from previous year diff --git a/UI/Scheduler/UIxCalendarProperties.m b/UI/Scheduler/UIxCalendarProperties.m index 9be5c947f..907ba0658 100644 --- a/UI/Scheduler/UIxCalendarProperties.m +++ b/UI/Scheduler/UIxCalendarProperties.m @@ -131,11 +131,11 @@ o = [values objectForKey: @"notifyUserOnPersonalModifications"]; if ([o isKindOfClass: [NSNumber class]]) [calendar setNotifyUserOnPersonalModifications: [o boolValue]]; - - o = [values objectForKey: @"notifiedUserOnPersonalModifications"]; - if ([o isKindOfClass: [NSString class]]) - [calendar setNotifiedUserOnPersonalModifications: o]; } + + o = [params objectForKey: @"notifiedUserOnPersonalModifications"]; + if ([o isKindOfClass: [NSString class]]) + [calendar setNotifiedUserOnPersonalModifications: o]; } NS_HANDLER {