Commit 04765537 authored by mku's avatar mku

ZP-465 #comment Attendee is set as organizer with iOS7 #time 90m

git-svn-id: https://z-push.org/svn/z-push/trunk@1751 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent b9efaa25
...@@ -1244,8 +1244,13 @@ class MAPIProvider { ...@@ -1244,8 +1244,13 @@ class MAPIProvider {
$props[$appointmentprops["sentrepresentingaddt"]] = "ZARAFA"; $props[$appointmentprops["sentrepresentingaddt"]] = "ZARAFA";
$props[$appointmentprops["representingentryid"]] = mapi_createoneoff(Request::GetAuthUser(), "ZARAFA", Request::GetAuthUser()); $props[$appointmentprops["representingentryid"]] = mapi_createoneoff(Request::GetAuthUser(), "ZARAFA", Request::GetAuthUser());
$props[$appointmentprops["sentrepresentinsrchk"]] = $props[$appointmentprops["sentrepresentingaddt"]].":".$props[$appointmentprops["sentrepresentingemail"]]; $props[$appointmentprops["sentrepresentinsrchk"]] = $props[$appointmentprops["sentrepresentingaddt"]].":".$props[$appointmentprops["sentrepresentingemail"]];
$props[$appointmentprops["icon"]] = 1026;
// the user is the organizer // the user is the organizer
// set these properties to show tracking tab in webapp
$props[$appointmentprops["mrwassent"]] = true;
$props[$appointmentprops["responsestatus"]] = olResponseOrganized; $props[$appointmentprops["responsestatus"]] = olResponseOrganized;
$props[$appointmentprops["meetingstatus"]] = olMeeting;
} }
// Do attendees // Do attendees
...@@ -1294,11 +1299,6 @@ class MAPIProvider { ...@@ -1294,11 +1299,6 @@ class MAPIProvider {
} }
mapi_message_modifyrecipients($mapimessage, 0, $recips); mapi_message_modifyrecipients($mapimessage, 0, $recips);
$props[$appointmentprops["icon"]] = 1026;
// set these properties to show tracking tab in webapp
$props[$appointmentprops["mrwassent"]] = true;
$props[$appointmentprops["responsestatus"]] = olResponseOrganized;
$props[$appointmentprops["meetingstatus"]] = olMeeting;
} }
mapi_setprops($mapimessage, $props); mapi_setprops($mapimessage, $props);
} }
......
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