Monotone-Parent: c36231c003dae4dd707b2d04f4f1442c04445da1

Monotone-Revision: e41874875e49863ccd11d5bd0c7107d5d2a253a6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-08-08T18:50:34
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-08-08 18:50:34 +00:00
parent 63683e60cd
commit f8df2a3d78
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2011-08-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentObject.m
(_handleAttendee:withDelegate:ownerUser:statusChange:inEvent:):
enable updating the attendee's calendar when a WORequest is not
available at all, for example from OpenChange.
2011-08-05 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Contacts/UIxContactView.m (-contactCardTitle): removed this

View File

@@ -1031,7 +1031,7 @@
// We generate the updated iCalendar file and we save it in the database.
// We do this ONLY when using SOGo from the Web interface. Over DAV, it'll
// be handled directly in PUTAction:
if ([[context request] handledByDefaultHandler])
if (![context request] || [[context request] handledByDefaultHandler])
{
newContent = [[event parent] versitString];
ex = [self saveContentString: newContent];