--- loncom/homework/radiobuttonresponse.pm 2003/04/08 02:40:56 1.68 +++ loncom/homework/radiobuttonresponse.pm 2003/04/18 06:26:43 1.69 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # mutliple choice style responses # -# $Id: radiobuttonresponse.pm,v 1.68 2003/04/08 02:40:56 albertel Exp $ +# $Id: radiobuttonresponse.pm,v 1.69 2003/04/18 06:26:43 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -113,12 +113,7 @@ sub grade_response { if (!defined($ENV{'form.submitted'})) { return; } my $response; if ($ENV{'form.submitted'} eq 'scantron') { - my %let_to_num=('A'=>0,'B'=>1,'C'=>2,'D'=>3,'E'=>4,'F'=>5,'G'=>6, - 'H'=>7,'I'=>8,'J'=>9,'K'=>10,'L'=>11,'M'=>12,'N'=>13, - 'O'=>14,'P'=>15,'Q'=>16,'R'=>17,'S'=>18,'T'=>19,'U'=>20, - 'V'=>21,'W'=>22,'X'=>23,'Y'=>24,'Z'=>25); - $response = $ENV{'scantron.'.$Apache::lonxml::counter.'.answer'}; - $response = $let_to_num{$response}; + $response=&Apache::response::getresponse(); } else { $response = $ENV{'form.HWVAL_'.$Apache::inputtags::response['-1']}; }