$row['title'] = $event->getTitle();
$row['location'] = $event->location;
$row['description'] = $event->description;
+ $row['private'] = (int)$event->private;
$row['start_date'] = sprintf('%d-%02d-%02d', $event->start->year, $event->start->month, $event->start->mday);
$row['start_time'] = sprintf('%02d:%02d:%02d', $event->start->hour, $event->start->min, $event->start->sec);
$row['end_date'] = sprintf('%d-%02d-%02d', $event->end->year, $event->end->month, $event->end->mday);
v2.3.5-cvs
----------
+[jan] Import and export the privacy field in CSV data (Request #9139).
[mjr] Send an iTip REQUEST, not ADD, when updating an existing event
(Bug #9131).
[jan] Fix all-day events sometimes showing up an day early too (Bug #9012).
if (!empty($hash['location'])) {
$this->location = $hash['location'];
}
+ if (!empty($hash['private'])) {
+ $this->private = true;
+ }
if (!empty($hash['start_date'])) {
$date = explode('-', $hash['start_date']);
if (empty($hash['start_time'])) {