--- loncom/interface/lonuserutils.pm 2017/01/28 03:48:44 1.182 +++ loncom/interface/lonuserutils.pm 2017/04/10 23:18:54 1.183 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Utility functions for managing LON-CAPA user accounts # -# $Id: lonuserutils.pm,v 1.182 2017/01/28 03:48:44 raeburn Exp $ +# $Id: lonuserutils.pm,v 1.183 2017/04/10 23:18:54 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3101,7 +3101,14 @@ END } if ($showcheckbox) { $r->print('<td><input type="checkbox" name="'. - 'actionlist" value="'.&HTML::Entities::encode($checkval,'&<>"').'" /></td>'); + 'actionlist" value="'. + &HTML::Entities::encode($checkval,'&<>"').'" />'); + foreach my $item ('start','end') { + $r->print('<input type="hidden" name="'. + &HTML::Entities::encode($checkval.'_'.$item,'&<>"').'"'. + ' value="'.$sdata->[$index{$item}].'" />'); + } + $r->print('</td>'); } else { $r->print('<td> </td>'); } @@ -3115,8 +3122,6 @@ END foreach my $item (@cols) { if ($item eq 'username') { $r->print('<td>'.&print_username_link($mode,\%in).'</td>'); - } elsif (($item eq 'start' || $item eq 'end') && ($actionselect)) { - $r->print('<td>'.$in{$item}.'<input type="hidden" name="'.&HTML::Entities::encode($checkval.'_'.$item.'" value="'.$sdata->[$index{$item}],'&<>"').'" /></td>'."\n"); } elsif ($item eq 'status') { my $showitem = $in{$item}; if (defined($ltstatus{$in{$item}})) {