mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 17:33:49 +01:00
Calendar: Fix incorrect extra user as participant
This commit is contained in:
parent
f039723e39
commit
be243c9aa7
@ -457,7 +457,8 @@ class calendar_uiforms extends calendar_ui
|
|||||||
case 'participant':
|
case 'participant':
|
||||||
foreach($data as $participant)
|
foreach($data as $participant)
|
||||||
{
|
{
|
||||||
if (is_null($participant))
|
// Participant widget returns "" when no value is selected
|
||||||
|
if(is_null($participant) || !trim($participant))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user