Commit a333cd79 authored by Manfred Kutas's avatar Manfred Kutas

ZP-817 Sensitivity (private) of tasks is not saved on the server.

Released under the Affero GNU General Public License (AGPL) version 3.
parent a713f08a
......@@ -401,6 +401,7 @@ class MAPIMapping {
"status" => "PT_LONG:PSETID_Task:0x8101",
"icon" => PR_ICON_INDEX,
"owner" => "PT_STRING8:PSETID_Task:0x811F",
"private" => "PT_BOOLEAN:PSETID_Common:0x8506",
);
}
......
......@@ -1589,6 +1589,10 @@ class MAPIProvider {
$recurrence->setRecurrence($recur);
}
if (isset($task->sensitivity) && $task->sensitivity == SENSITIVITY_PRIVATE) {
$props[$taskprops["private"]] = true;
}
//open addresss book for user resolve to set the owner
$addrbook = $this->getAddressbook();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment