--- loncom/interface/lonmeta.pm 2008/12/13 23:09:35 1.212.2.3 +++ loncom/interface/lonmeta.pm 2008/12/17 18:47:08 1.212.2.4 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Metadata display handler # -# $Id: lonmeta.pm,v 1.212.2.3 2008/12/13 23:09:35 raeburn Exp $ +# $Id: lonmeta.pm,v 1.212.2.4 2008/12/17 18:47:08 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -951,7 +951,7 @@ sub present_uneditable_metadata { $rownum ++; $lastrow = 1 if ($rownum == @fields); $table.=&Apache::lonhtmlcommon::row_title($lt{$field}) - .&prettyprint($field,$content{$field}). + .&prettyprint($field,$content{$field}) .&Apache::lonhtmlcommon::row_closure($lastrow); delete($content{$field}); } @@ -1033,7 +1033,7 @@ sub print_dynamic_metadata { $rownum ++; $lastrow = 1 if ($rownum == @stats); $r->print(&Apache::lonhtmlcommon::row_title($lt{$item}) - .&prettyprint($item,sprintf('%5.2f',$dynmeta{$item})). + .&prettyprint($item,sprintf('%5.2f',$dynmeta{$item})) .&Apache::lonhtmlcommon::row_closure($lastrow) ); } @@ -1047,13 +1047,13 @@ sub print_dynamic_metadata { ''); my $table=&Apache::loncommon::start_data_table() .&Apache::loncommon::start_data_table_header_row() - .''.&mt('Course').''. - .''.&mt('Section(s)').''. - .''.&mt('Num Student').'s'. - .''.&mt('Mean Tries').''. - .''.&mt('Degree of Difficulty').''. - .''.&mt('Degree of Discrimination').''. - .''.&mt('Time of computation').''. + .''.&mt('Course').'' + .''.&mt('Section(s)').'' + .''.&mt('Num Student').'s' + .''.&mt('Mean Tries').'' + .''.&mt('Degree of Difficulty').'' + .''.&mt('Degree of Discrimination').'' + .''.&mt('Time of computation').'' .&Apache::loncommon::end_data_table_header_row().$/; foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) { my $data = $dynmeta{'stats'}->{$identifier};