From caf93d3e94d44c6e788fc79fc500abda13c14b27 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 27 Jul 2016 09:13:13 -0400 Subject: [PATCH] T1382: Fix storing COMPLETED/IN-PROCESS in partstat field --- plugins/libkolab/lib/kolab_format_xcal.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/plugins/libkolab/lib/kolab_format_xcal.php b/plugins/libkolab/lib/kolab_format_xcal.php index 69a273a2..a04375e8 100644 --- a/plugins/libkolab/lib/kolab_format_xcal.php +++ b/plugins/libkolab/lib/kolab_format_xcal.php @@ -92,12 +92,14 @@ abstract class kolab_format_xcal extends kolab_format ); protected $part_status_map = array( - 'UNKNOWN' => kolabformat::PartNeedsAction, + 'UNKNOWN' => kolabformat::PartNeedsAction, 'NEEDS-ACTION' => kolabformat::PartNeedsAction, - 'TENTATIVE' => kolabformat::PartTentative, - 'ACCEPTED' => kolabformat::PartAccepted, - 'DECLINED' => kolabformat::PartDeclined, - 'DELEGATED' => kolabformat::PartDelegated, + 'TENTATIVE' => kolabformat::PartTentative, + 'ACCEPTED' => kolabformat::PartAccepted, + 'DECLINED' => kolabformat::PartDeclined, + 'DELEGATED' => kolabformat::PartDelegated, + 'IN-PROCESS' => kolabformat::PartInProcess, + 'COMPLETED' => kolabformat::PartCompleted, );