[LON-CAPA-cvs] cvs: loncom /interface lonstatistics.pm
minaeibi
lon-capa-cvs@mail.lon-capa.org
Sun, 12 Jan 2003 23:45:47 -0000
minaeibi Sun Jan 12 18:45:47 2003 EDT
Modified files:
/loncom/interface lonstatistics.pm
Log:
To fix bug #1052:
in the pulldown menu, The "percentage Graph" changed into "Correct-problems Plot".
Index: loncom/interface/lonstatistics.pm
diff -u loncom/interface/lonstatistics.pm:1.57 loncom/interface/lonstatistics.pm:1.58
--- loncom/interface/lonstatistics.pm:1.57 Sun Jan 12 18:31:22 2003
+++ loncom/interface/lonstatistics.pm Sun Jan 12 18:45:47 2003
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# (Publication Handler
#
-# $Id: lonstatistics.pm,v 1.57 2003/01/12 23:31:22 minaeibi Exp $
+# $Id: lonstatistics.pm,v 1.58 2003/01/12 23:45:47 minaeibi Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -546,7 +546,7 @@
my %reports = ('classlist' => 'Class list',
'problem_statistics' => 'Problem Statistics',
'student_assessment' => 'Student Assessment',
- 'percentage' => 'Percentage Graphs',
+ 'percentage' => 'Correct-problems Plot',
# 'activitylog' => 'Activity Log',
'reportSelected' => 'Class list');
@@ -626,7 +626,7 @@
} elsif($GoToPage eq 'Class list') {
&BuildClasslist($cacheDB, $students, \@studentInformation,
\@headings, $r);
- } elsif($GoToPage eq 'Percentage Graphs') {
+ } elsif($GoToPage eq 'Correct-problems Plot') {
&Apache::lonpercentage::BuildPercentageGraph($cacheDB, $students,
$courseID, $c, $r);
}