T1382: Fix storing COMPLETED/IN-PROCESS in partstat field
This commit is contained in:
parent
c7eb3e729a
commit
2056b92c39
1 changed files with 7 additions and 5 deletions
|
@ -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,
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue