mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 08:09:02 +01:00
fixed typo preventing meeting responses
This commit is contained in:
parent
77a3342da6
commit
c76b39f8d4
@ -396,10 +396,10 @@ return array(); // temporary disabling meeting requests from calendar
|
|||||||
$status = isset($as2status[$response]) ? $as2status[$response] : 'U';
|
$status = isset($as2status[$response]) ? $as2status[$response] : 'U';
|
||||||
$uid = $GLOBALS['egw_info']['user']['account_id'];
|
$uid = $GLOBALS['egw_info']['user']['account_id'];
|
||||||
|
|
||||||
if (!is_numeric($event)) // iCal from fmail
|
if (!is_numeric($requestid)) // iCal from fmail
|
||||||
{
|
{
|
||||||
$ical = new calendar_ical();
|
$ical = new calendar_ical();
|
||||||
if (!($events = $ical->icaltoegw($data['attachment'], '', 'utf-8')) || count($events) != 1)
|
if (!($events = $ical->icaltoegw($requestid, '', 'utf-8')) || count($events) != 1)
|
||||||
{
|
{
|
||||||
debugLog(__METHOD__."('$event') error parsing iCal!");
|
debugLog(__METHOD__."('$event') error parsing iCal!");
|
||||||
return null;
|
return null;
|
||||||
@ -414,9 +414,14 @@ return array(); // temporary disabling meeting requests from calendar
|
|||||||
}
|
}
|
||||||
elseif(!isset($event['participants'][$uid]))
|
elseif(!isset($event['participants'][$uid]))
|
||||||
{
|
{
|
||||||
debugLog(__METHOD__.'('.array2string($requestid).", $folderid, $response) current user is NO participant!");
|
debugLog(__METHOD__.'('.array2string($requestid).", $folderid, $response) current user ($uid) is NO participant of event ".array2string($event));
|
||||||
// maybe we should silently add him, as he might not have the rights to add him himself with calendar->update ...
|
// maybe we should silently add him, as he might not have the rights to add him himself with calendar->update ...
|
||||||
}
|
}
|
||||||
|
elseif($event['deleted'])
|
||||||
|
{
|
||||||
|
debugLog(__METHOD__.'('.array2string($requestid).", $folderid, $response) event ($uid) deleted on server --> return false");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
elseif($requestid > 0) // uid from mail --> let fmail plugin call us
|
elseif($requestid > 0) // uid from mail --> let fmail plugin call us
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user