[LON-CAPA-cvs] cvs: loncom /interface/statistics lonpercentage.pm

minaeibi lon-capa-cvs@mail.lon-capa.org
Tue, 14 Jan 2003 22:10:08 -0000


minaeibi		Tue Jan 14 17:10:08 2003 EDT

  Modified files:              
    /loncom/interface/statistics	lonpercentage.pm 
  Log:
  To fix the reopened bug #1152 a minor change has been done.
  If a student has 125 correct out of 125 possible, that is 100%,
  he was not included on the plot but NOW it is included.
  
  
  
Index: loncom/interface/statistics/lonpercentage.pm
diff -u loncom/interface/statistics/lonpercentage.pm:1.7 loncom/interface/statistics/lonpercentage.pm:1.8
--- loncom/interface/statistics/lonpercentage.pm:1.7	Mon Jan 13 12:31:41 2003
+++ loncom/interface/statistics/lonpercentage.pm	Tue Jan 14 17:10:08 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # (Publication Handler
 #
-# $Id: lonpercentage.pm,v 1.7 2003/01/13 17:31:41 minaeibi Exp $
+# $Id: lonpercentage.pm,v 1.8 2003/01/14 22:10:08 minaeibi Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -270,7 +270,7 @@
     my $Freq;
     if ($totalProblems >= 100 ) {
         $xlabel = 'Percentage_of_Problems_Correct';
-        $Freq=100;
+        $Freq=101;
     } else {
         $xlabel = 'Number_of_Problems_Correct';
         $Freq = $cId;