diff options
Diffstat (limited to 'plugins/calendar/drivers/kolab/kolab_calendar.php')
-rw-r--r-- | plugins/calendar/drivers/kolab/kolab_calendar.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/calendar/drivers/kolab/kolab_calendar.php b/plugins/calendar/drivers/kolab/kolab_calendar.php index 404d35c..850a12f 100644 --- a/plugins/calendar/drivers/kolab/kolab_calendar.php +++ b/plugins/calendar/drivers/kolab/kolab_calendar.php @@ -674,6 +674,11 @@ class kolab_calendar extends kolab_storage_folder_api $record['calendar'] = $this->id; $record['links'] = $this->get_links($record['uid']); + if ($this->get_namespace() == 'other') { + $record['className'] = 'fc-event-ns-other'; + $record = kolab_driver::add_partstat_class($record, array('NEEDS-ACTION','DECLINED'), $this->get_owner()); + } + return kolab_driver::to_rcube_event($record); } |