* Calendar: fixed not included organizer in meeting request

This commit is contained in:
Ralf Becker 2011-05-26 10:48:57 +00:00
parent 3df142b00b
commit 30259bfd4c
2 changed files with 2 additions and 1 deletions

View File

@ -751,7 +751,7 @@ class calendar_boupdate extends calendar_bo
if (is_null($ics))
{
$calendar_ical = new calendar_ical();
$calendar_ical->setSupportedFields('groupdav'); // full iCal fields+event TZ
$calendar_ical->setSupportedFields('full'); // full iCal fields+event TZ
$ics = $calendar_ical->exportVCal($event['id'],'2.0',$method);
unset($calendar_ical);
}

View File

@ -2078,6 +2078,7 @@ class calendar_ical extends calendar_boupdate
$this->supportedFields = $defaultFields['full'];
break;
case 'full':
case 'groupdav': // all GroupDAV access goes through here
$this->tzid = false; // use event's TZ
switch ($this->productName)