--- loncom/metadata_database/LONCAPA/lonmetadata.pm 2004/04/14 18:29:31 1.6 +++ loncom/metadata_database/LONCAPA/lonmetadata.pm 2004/04/14 20:35:29 1.7 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonmetadata.pm,v 1.6 2004/04/14 18:29:31 matthew Exp $ +# $Id: lonmetadata.pm,v 1.7 2004/04/14 20:35:29 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -572,11 +572,14 @@ sub process_dynamic_metadata { # put together comments my $comments = '
'; foreach my $evaluator (keys(%{$resdata->{'evaluation'}->{'comments'}})){ - $comments .= ''.$evaluator.''. - ''. - $resdata->{'evaluation'}->{'comments'}->{$evaluator}.''; + $comments .= + '

'. + ''.$evaluator.':'. + $resdata->{'evaluation'}->{'comments'}->{$evaluator}. + '

'; } $comments .= '
'; + $data{'comments'} = $comments; # return %data; }