--- loncom/homework/optionresponse.pm 2003/10/27 19:27:09 1.93 +++ loncom/homework/optionresponse.pm 2003/10/27 20:04:34 1.94 @@ -1,7 +1,7 @@ # LearningOnline Network with CAPA # option list style responses # -# $Id: optionresponse.pm,v 1.93 2003/10/27 19:27:09 albertel Exp $ +# $Id: optionresponse.pm,v 1.94 2003/10/27 20:04:34 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -149,7 +149,8 @@ sub end_foilgroup { my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; my $result; - if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || $target eq 'tex' || $target eq 'analyze') { + if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || + $target eq 'tex' || $target eq 'analyze') { my $tex_option_switch=&Apache::lonxml::get_param('texoptions',$parstack,$safeeval); my $name; my @opt; @@ -165,7 +166,8 @@ sub end_foilgroup { $result.=&displayanswers($max,$randomize,@opt); } elsif ( $target eq 'analyze') { my @shown = &whichfoils($max,$randomize); - &Apache::response::analyze_store_foilgroup(\@shown,['text','value']); + &Apache::response::analyze_store_foilgroup(\@shown, + ['text','value','location']); my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]"; push (@{ $Apache::lonhomework::analyze{"$part_id.options"} },@opt); } elsif ( $target eq 'grade') {