--- loncom/interface/lonhelper.pm 2018/09/03 16:23:25 1.197.2.1 +++ loncom/interface/lonhelper.pm 2018/09/03 20:25:53 1.197.2.2 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # .helper XML handler to implement the LON-CAPA helper # -# $Id: lonhelper.pm,v 1.197.2.1 2018/09/03 16:23:25 raeburn Exp $ +# $Id: lonhelper.pm,v 1.197.2.2 2018/09/03 20:25:53 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3327,7 +3327,7 @@ sub start_group { if ((!$paramHash->{'grouponly'}) || (&Apache::lonnet::allowed('mdg',$Apache::lonnet::env{'request.course.id'}))) { %curr_groups = &Apache::longroup::coursegroups(); } elsif ($Apache::lonnet::env{'request.course.groups'} ne '') { - map { $curr_groups{$_} = 1; } split(/,/,$Apache::lonnet::env{'request.course.groups'}); + map { $curr_groups{$_} = 1; } split(/:/,$Apache::lonnet::env{'request.course.groups'}); } foreach my $group_name (sort {lc($a) cmp lc($b)} (keys(%curr_groups))) { push(@{$paramHash->{CHOICES}}, [$group_name, $group_name]);