--- loncom/interface/lonhelper.pm 2006/05/11 21:10:21 1.148 +++ loncom/interface/lonhelper.pm 2006/05/15 22:01:12 1.149 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # .helper XML handler to implement the LON-CAPA helper # -# $Id: lonhelper.pm,v 1.148 2006/05/11 21:10:21 foxr Exp $ +# $Id: lonhelper.pm,v 1.149 2006/05/15 22:01:12 foxr Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2355,11 +2355,12 @@ sub render { # Current personel $result .= &Apache::lonselstudent::render_student_list( $current_members, - "current", - \%defaultUsers, - $self->{'multichoice'}, - $self->{'variable'}, - 1); + "helpform", + "current", + \%defaultUsers, + $self->{'multichoice'}, + $self->{'variable'}, + 1); # If activeonly is not set then we can also give the expired students: @@ -2369,19 +2370,21 @@ sub render { # And future. $result .= &Apache::lonselstudent::render_student_list( $future_members, - "future", - \%defaultUsers, - $self->{'multichoice'}, - $self->{'variable'}, - 0); + "helpform", + "future", + \%defaultUsers, + $self->{'multichoice'}, + $self->{'variable'}, + 0); # Past $result .= &Apache::lonselstudent::render_student_list($expired_members, - "past", - \%defaultUsers, - $self->{'multichoice'}, - $self->{'variable'}, - 0); + "helpform", + "past", + \%defaultUsers, + $self->{'multichoice'}, + $self->{'variable'}, + 0); }