--- loncom/interface/lonprintout.pm 2004/05/03 17:51:11 1.298 +++ loncom/interface/lonprintout.pm 2004/05/06 06:45:13 1.300 @@ -1,7 +1,7 @@ # The LearningOnline Network # Printout # -# $Id: lonprintout.pm,v 1.298 2004/05/03 17:51:11 sakharuk Exp $ +# $Id: lonprintout.pm,v 1.300 2004/05/06 06:45:13 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1038,7 +1038,7 @@ ENDPART } my $flag_latex_header_remove = 'NO'; my %moreenv = ('textwidth' => &get_textwidth($helper,$LaTeXwidth)); - my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$num_todo,'inline'); + my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r,'Print Status','Class Print Status',$num_todo,'inline','75'); my $seed=time+($$<<16)+($$); my @allcodes; if ($old_name) { @@ -1046,6 +1046,7 @@ ENDPART @allcodes=split(',',$result{$old_name}); } else { my %allcodes; + srand($seed); for (my $i=0;$i<$num_todo;$i++) { $moreenv{'CODE'}=&get_CODE(\%allcodes,$i,$seed,'6'); } @@ -1247,7 +1248,6 @@ sub num_to_letters { sub get_CODE { my ($all_codes,$num,$seed,$size)=@_; my $max='1'.'0'x$size; - srand($seed); my $newcode; while(1) { $newcode=sprintf("%06d",int(rand($max)));