Commit 1c1820f0 authored by mku's avatar mku

ZP-418 #comment Changed note of an occurrence of a recurring appointment won't...

ZP-418 #comment Changed note of an occurrence of a recurring appointment won't be synced to the mobile  #time 1h 30m

git-svn-id: https://z-push.org/svn/z-push/trunk@1689 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 4d6106c2
...@@ -1197,6 +1197,13 @@ class MAPIProvider { ...@@ -1197,6 +1197,13 @@ class MAPIProvider {
if (isset($exception->body)) if (isset($exception->body))
$exceptionprops[$appointmentprops["body"]] = u2w($exception->body); $exceptionprops[$appointmentprops["body"]] = u2w($exception->body);
if (isset($exception->asbody)) {
$this->setASbody($exception->asbody, $exceptionprops, $appointmentprops);
$mapiexception["body"] = $exceptionprops[$appointmentprops["body"]] =
(isset($exceptionprops[$appointmentprops["body"]])) ? $exceptionprops[$appointmentprops["body"]] :
((isset($exceptionprops[$appointmentprops["html"]])) ? $exceptionprops[$appointmentprops["html"]] : "");
}
array_push($recur["changed_occurences"], $mapiexception); array_push($recur["changed_occurences"], $mapiexception);
if (!empty($exceptionprops)) { if (!empty($exceptionprops)) {
......
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