diff --git a/plugins/calendar/drivers/kolab/kolab_calendar.php b/plugins/calendar/drivers/kolab/kolab_calendar.php index 3ea8094a..9e149d65 100644 --- a/plugins/calendar/drivers/kolab/kolab_calendar.php +++ b/plugins/calendar/drivers/kolab/kolab_calendar.php @@ -89,7 +89,7 @@ class kolab_calendar extends kolab_storage_folder_api else { $rights = $this->storage->get_myrights(); if ($rights && !PEAR::isError($rights)) { - if (strpos($rights, 'i') !== false || strpos($rights, 'w') !== false) + if (strpos($rights, 'i') !== false) $this->insert = true; if (strpos($rights, 't') !== false || strpos($rights, 'd') !== false) $this->writeable = $this->insert;