Fix for bug #411157 - Free/Busy and fullnames

This commit is contained in:
skeeter 2001-03-25 14:41:17 +00:00
parent 382347be76
commit a2e4b791c9

View File

@ -344,7 +344,18 @@
$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;
}
}
/*!