mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 18:08:21 +01:00
Fix for bug #411157 - Free/Busy and fullnames
This commit is contained in:
parent
382347be76
commit
a2e4b791c9
@ -344,7 +344,18 @@
|
|||||||
$a[] = $firstname;
|
$a[] = $firstname;
|
||||||
}
|
}
|
||||||
|
|
||||||
return '<' . $lid . '> ' . implode(', ',$a);
|
switch(count($a))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
return $lid;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
return '<' . $lid . '> ' . $a[0];
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
return '<' . $lid . '> ' . implode(', ',$a);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user