Calendar: Fix mail -> event does not have user as new alarm option

This commit is contained in:
nathan 2023-06-14 10:03:39 -06:00
parent c213ebb17d
commit 37bfeeaa16

View File

@ -1919,7 +1919,7 @@ class calendar_uiforms extends calendar_ui
{
$sel_options['owner'][0] = lang('All participants');
}
if (isset($event['participant_types']['u'][$this->user]))
if(isset($event['participant_types']['u'][$this->user]) || isset($event['participant_types'][''][$this->user]))
{
$sel_options['owner'][$this->user] = $this->bo->participant_name($this->user);
}