--- loncom/interface/lonquickgrades.pm 2003/09/22 20:05:20 1.26 +++ loncom/interface/lonquickgrades.pm 2003/09/22 21:05:15 1.27 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Quick Student Grades Display # -# $Id: lonquickgrades.pm,v 1.26 2003/09/22 20:05:20 albertel Exp $ +# $Id: lonquickgrades.pm,v 1.27 2003/09/22 21:05:15 bowersj2 Exp $ # # Copyright Michigan State University Board of Trustees # @@ -58,9 +58,9 @@ sub real_handler { # Send header, don't cache this page if ($ENV{'browser.mathml'}) { - &Apache::loncommon::content_type($r,'text/xml'); + &Apache::loncommon::content_type($r, 'text/xml'); } else { - &Apache::loncommon::content_type($r,'text/html'); + &Apache::loncommon::content_type($r, 'text/html'); } &Apache::loncommon::no_cache($r); $r->send_http_header; @@ -148,12 +148,12 @@ HEADER } $totalParts += $curRes->weight($part); } else { - my $status = $curRes->getCompletionStatus($part); + my $status = $curRes->simpleStatus($part); my $thisright = 0; $partsCount++; if ($status == $curRes->CORRECT || - $status == $curRes->CORRECT_BY_OVERRIDE || - $status == $curRes->ANSWER_SUBMITTED) { + $status == $curRes->INCORRECT || + $status == $curRes->ATTEMPTED) { $partsRight++; $totalRight++; $thisright = 1;