Diff for /loncom/interface/statistics/lonstudentsubmissions.pm between versions 1.27 and 1.28

version 1.27, 2004/11/08 15:21:38 version 1.28, 2004/11/19 19:44:39
Line 654  sub prepare_excel_output { Line 654  sub prepare_excel_output {
                 }                  }
             }              }
         }          }
           # Fill in the remaining rows with the students data
           for (my $row = $student_row+1;$row<=$max_row;$row++) {
               my $cols = 0;
               foreach my $field (@StudentColumns) {
                   $worksheet->write($row,$cols++,
                                     $student->{$field});
               }
           }
         $rows_output++;          $rows_output++;
         &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,          &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state,
                                                  'last student');                                                   'last student');

Removed from v.1.27  
changed lines
  Added in v.1.28


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>