fix for multiple participants

This commit is contained in:
skeeter 2000-12-17 00:37:18 +00:00
parent 16379ce5cc
commit 5bb242ed32

View File

@ -47,7 +47,11 @@
$groups = Array();
for(reset($cal);$key=key($cal);next($cal)) {
$data = $cal[$key];
$cal_info->set($key,$data);
if($data=="participants") {
$cal_info->set("participants[]",$data);
} else {
$cal_info->set($key,$data);
}
}
$participating = False;