mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-10 15:58:52 +00:00
Monotone-Parent: 99678ac51fdef1047f37db7c25c8664b99b53d4b
Monotone-Revision: daf854098ad38237d61056322cf6b4b3d59c74de Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-20T14:47:05 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2007-11-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentObject.m: don't take an
|
||||
empty c_name as a valid response when looking up an event. Create
|
||||
one in that case instead.
|
||||
|
||||
2007-11-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/PreferencesUI/UIxPreferences.m ([UIxPreferences -signature]):
|
||||
|
||||
@@ -73,6 +73,8 @@
|
||||
if ([object isKindOfClass: [NSException class]])
|
||||
object = nil;
|
||||
}
|
||||
else
|
||||
object = nil;
|
||||
}
|
||||
|
||||
if (!object)
|
||||
@@ -310,7 +312,8 @@
|
||||
ex = [self saveContentString: newContent];
|
||||
if (!(ex || [event userIsOrganizer: [context activeUser]]))
|
||||
{
|
||||
if ([[attendee rsvp] isEqualToString: @"true"])
|
||||
if ([[attendee rsvp] isEqualToString: @"true"]
|
||||
&& [event isStillRelevant])
|
||||
[self sendResponseToOrganizer];
|
||||
organizerUID = [[event organizer] uid];
|
||||
if (organizerUID)
|
||||
|
||||
Reference in New Issue
Block a user