Omit RSVP flag in iCal export if not true
This commit is contained in:
parent
61037eb97c
commit
db637619c3
1 changed files with 1 additions and 1 deletions
|
@ -1088,7 +1088,7 @@ class libvcalendar implements Iterator
|
|||
}
|
||||
else if (!empty($attendee['email'])) {
|
||||
if (isset($attendee['rsvp']))
|
||||
$attendee['rsvp'] = $attendee['rsvp'] ? 'TRUE' : 'FALSE';
|
||||
$attendee['rsvp'] = $attendee['rsvp'] ? 'TRUE' : null;
|
||||
$ve->add('ATTENDEE', 'mailto:' . $attendee['email'], array_filter(self::map_keys($attendee, $this->attendee_keymap)));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue