diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-12-23 15:58:58 (GMT) |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-12-23 15:58:58 (GMT) |
commit | 1fef39393fe9a735092c78bec37082d0966d2f87 (patch) | |
tree | e93c676bc99508d808ebaea032d613677cf07edc | |
parent | 23f75124088ca8aabb8ab6124a3e7482e93230a8 (diff) | |
download | iRony-1fef39393fe9a735092c78bec37082d0966d2f87.tar.gz |
Correctly set folder type according to the submitted supported-calendar-component-set property (#4129)
-rw-r--r-- | lib/Kolab/Utils/DAVBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kolab/Utils/DAVBackend.php b/lib/Kolab/Utils/DAVBackend.php index cb3e56b..6c4b69f 100644 --- a/lib/Kolab/Utils/DAVBackend.php +++ b/lib/Kolab/Utils/DAVBackend.php @@ -195,7 +195,7 @@ class DAVBackend $comp_types = $val->getValue(); $comp_type = $comp_types[0]; if (!empty($type_map[$comp_type])) - $type = $type_map[$comp_type]; + $props['type'] = $type = $type_map[$comp_type]; break; case '{urn:ietf:params:xml:ns:caldav}calendar-description': |