--- loncom/configuration/Checksumming.pm 2013/02/08 15:14:22 1.5 +++ loncom/configuration/Checksumming.pm 2013/06/29 16:59:09 1.6 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Checksum installed LON-CAPA modules and some configuration files # -# $Id: Checksumming.pm,v 1.5 2013/02/08 15:14:22 raeburn Exp $ +# $Id: Checksumming.pm,v 1.6 2013/06/29 16:59:09 raeburn Exp $ # # The LearningOnline Network with CAPA # @@ -277,7 +277,8 @@ sub compare_checksums { foreach my $file (sort(keys(%missing))) { my $revnum = $stdversions{$file}; if ($target eq 'web') { - $message .= ''.$file.''."\n". + $message .= &Apache::loncommon::start_data_table_row()."\n". + ''.$file.''."\n". ''.$revnum.''."\n". &Apache::loncommon::end_data_table_row()."\n"; } else { @@ -313,7 +314,8 @@ sub compare_checksums { } foreach my $file (sort(keys(%extra))) { if ($target eq 'web') { - $message .= ''.$file.''."\n". + $message .= &Apache::loncommon::start_data_table_row()."\n". + ''.$file.''."\n". ''.$serverversions->{$file}.''."\n". &Apache::loncommon::end_data_table_row()."\n"; } else {