--- loncom/homework/optionresponse.pm 2002/03/29 19:19:21 1.35 +++ loncom/homework/optionresponse.pm 2002/04/01 21:26:57 1.36 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # option list style responses # -# $Id: optionresponse.pm,v 1.35 2002/03/29 19:19:21 albertel Exp $ +# $Id: optionresponse.pm,v 1.36 2002/04/01 21:26:57 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -204,7 +204,11 @@ sub end_foilgroup { } elsif ($wrong==0 && $right==0) { #nothing submitted } else { - $ad='INCORRECT'; + if ($ignored==0) { + $ad='INCORRECT'; + } else { + $ad='MISSING_ANSWER'; + } } $Apache::lonhomework::results{"resource.$part.$id.submission"}= $responsestr;