Commit 989e8537 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #131 in ZP/z-push from...

Merge pull request #131 in ZP/z-push from bugfix/ZP-817-pr_sensitivity-is-not-saved-for-tasks to develop

* commit '1dd2d287':
  ZP-817 Unsetting private task in Outlook is not saved on the server.
parents 200c9f74 1dd2d287
......@@ -1589,9 +1589,7 @@ class MAPIProvider {
$recurrence->setRecurrence($recur);
}
if (isset($task->sensitivity) && $task->sensitivity == SENSITIVITY_PRIVATE) {
$props[$taskprops["private"]] = true;
}
$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