Commit 66a7ae5d authored by Manfred Kutas's avatar Manfred Kutas

ZP-817 Set task as private if sensitivity is private or greater.

Released under the Affero GNU General Public License (AGPL) version 3.
parent 1dd2d287
......@@ -1589,7 +1589,7 @@ class MAPIProvider {
$recurrence->setRecurrence($recur);
}
$props[$taskprops["private"]] = (isset($task->sensitivity) && $task->sensitivity == SENSITIVITY_PRIVATE) ? true : false;
$props[$taskprops["private"]] = (isset($task->sensitivity) && $task->sensitivity >= SENSITIVITY_PRIVATE) ? true : false;
//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