--- loncom/interface/lonquickgrades.pm 2008/12/10 21:46:58 1.44 +++ loncom/interface/lonquickgrades.pm 2008/12/11 14:55:15 1.45 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Quick Student Grades Display # -# $Id: lonquickgrades.pm,v 1.44 2008/12/10 21:46:58 kaisler Exp $ +# $Id: lonquickgrades.pm,v 1.45 2008/12/11 14:55:15 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -257,10 +257,19 @@ sub real_handler { $r->print("$thisIndent$title"); if ($totalAttempted) { - $r->print("$thisIndent$correct / $attempted / $total" - .&Apache::loncommon::end_data_table_row()); + $r->print('' + .$thisIndent + .'' + .$correct.' / '.$attempted.' / '.$total + .'' + .&Apache::loncommon::end_data_table_row() + ); } else { - $r->print("$thisIndent$correct / $total" + $r->print('' + .$thisIndent + .'' + .$correct.' / '.$total + .'' .&Apache::loncommon::end_data_table_row()); } }