[LON-CAPA-cvs] cvs: loncom(version_2_8_X) /interface lonmeta.pm
raeburn
raeburn@source.lon-capa.org
Wed, 17 Dec 2008 18:47:08 -0000
raeburn Wed Dec 17 18:47:08 2008 EDT
Modified files: (Branch: version_2_8_X)
/loncom/interface lonmeta.pm
Log:
- Remove duplicate concatenation operators.
Index: loncom/interface/lonmeta.pm
diff -u loncom/interface/lonmeta.pm:1.212.2.3 loncom/interface/lonmeta.pm:1.212.2.4
--- loncom/interface/lonmeta.pm:1.212.2.3 Sat Dec 13 23:09:35 2008
+++ loncom/interface/lonmeta.pm Wed Dec 17 18:47:08 2008
@@ -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 @@
$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 @@
$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 @@
'</h4>');
my $table=&Apache::loncommon::start_data_table()
.&Apache::loncommon::start_data_table_header_row()
- .'<th>'.&mt('Course').'</th>'.
- .'<th>'.&mt('Section(s)').'</th>'.
- .'<th>'.&mt('Num Student').'s</th>'.
- .'<th>'.&mt('Mean Tries').'</th>'.
- .'<th>'.&mt('Degree of Difficulty').'</th>'.
- .'<th>'.&mt('Degree of Discrimination').'</th>'.
- .'<th>'.&mt('Time of computation').'</th>'.
+ .'<th>'.&mt('Course').'</th>'
+ .'<th>'.&mt('Section(s)').'</th>'
+ .'<th>'.&mt('Num Student').'s</th>'
+ .'<th>'.&mt('Mean Tries').'</th>'
+ .'<th>'.&mt('Degree of Difficulty').'</th>'
+ .'<th>'.&mt('Degree of Discrimination').'</th>'
+ .'<th>'.&mt('Time of computation').'</th>'
.&Apache::loncommon::end_data_table_header_row().$/;
foreach my $identifier (sort(keys(%{$dynmeta{'stats'}}))) {
my $data = $dynmeta{'stats'}->{$identifier};