[LON-CAPA-cvs] cvs: loncom /interface/statistics lonstudentassessment.pm
matthew
lon-capa-cvs@mail.lon-capa.org
Tue, 24 Jun 2003 19:23:45 -0000
matthew Tue Jun 24 15:23:45 2003 EDT
Modified files:
/loncom/interface/statistics lonstudentassessment.pm
Log:
Return the students score instead of the problem weight.
Index: loncom/interface/statistics/lonstudentassessment.pm
diff -u loncom/interface/statistics/lonstudentassessment.pm:1.62 loncom/interface/statistics/lonstudentassessment.pm:1.63
--- loncom/interface/statistics/lonstudentassessment.pm:1.62 Mon Jun 23 12:06:11 2003
+++ loncom/interface/statistics/lonstudentassessment.pm Tue Jun 24 15:23:45 2003
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: lonstudentassessment.pm,v 1.62 2003/06/23 16:06:11 matthew Exp $
+# $Id: lonstudentassessment.pm,v 1.63 2003/06/24 19:23:45 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1500,7 +1500,7 @@
#
$partscore = $weight*$awarded;
$score += $partscore;
- $symbol = $weight;
+ $symbol = $partscore;
if (length($symbol) > 1) {
$symbol = '*';
}