Fix fatal error when copying an event

This commit is contained in:
Nathan Gray 2016-01-19 00:42:27 +00:00
parent a075d5a612
commit 85eebd426d

View File

@ -597,13 +597,13 @@ class calendar_uiforms extends calendar_ui
// Clear participant stati
foreach($event['participant_types'] as $type => &$participants)
{
foreach($participants as $id => &$response)
foreach($participants as $id => &$p_response)
{
if($type == 'u' && $id == $event['owner']) continue;
calendar_so::split_status($response, $quantity, $role);
calendar_so::split_status($p_response, $quantity, $role);
// if resource defines callback for status of new status (eg. Resources app acknowledges direct booking acl), call it
$status = isset($this->bo->resources[$type]['new_status']) ? ExecMethod($this->bo->resources[$type]['new_status'],$id) : 'U';
$response = calendar_so::combine_status($status,$quantity,$role);
$p_response = calendar_so::combine_status($status,$quantity,$role);
}
}