[LON-CAPA-cvs] cvs: loncom /homework inputtags.pm

albertel lon-capa-cvs@mail.lon-capa.org
Tue, 23 Sep 2003 15:43:39 -0000


albertel		Tue Sep 23 11:43:39 2003 EDT

  Modified files:              
    /loncom/homework	inputtags.pm 
  Log:
  - if regraded, awarded needs to be reset to zero
  
  
Index: loncom/homework/inputtags.pm
diff -u loncom/homework/inputtags.pm:1.117 loncom/homework/inputtags.pm:1.118
--- loncom/homework/inputtags.pm:1.117	Mon Sep 22 16:49:01 2003
+++ loncom/homework/inputtags.pm	Tue Sep 23 11:43:39 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # input  definitons
 #
-# $Id: inputtags.pm,v 1.117 2003/09/22 20:49:01 albertel Exp $
+# $Id: inputtags.pm,v 1.118 2003/09/23 15:43:39 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -518,6 +518,9 @@
     } elsif ( $award eq 'INCORRECT' ) {
       $Apache::lonhomework::results{"resource.$id.tries"} =
 	$Apache::lonhomework::history{"resource.$id.tries"} + 1;
+      if (lc($Apache::lonhomework::problemstatus) ne 'no') {
+	  $Apache::lonhomework::results{"resource.$id.awarded"} = 0;
+      }
       $Apache::lonhomework::results{"resource.$id.solved"} =
 	'incorrect_attempted'
     } elsif ( $award eq 'SUBMITTED' ) {
@@ -537,6 +540,7 @@
       if (lc($Apache::lonhomework::problemstatus) eq 'no') {
 	  $Apache::lonhomework::results{"resource.$id.tries"} =
 	      $Apache::lonhomework::history{"resource.$id.tries"} + 1;
+	  $Apache::lonhomework::results{"resource.$id.awarded"} = 0;
       }
     }