--- loncom/homework/radiobuttonresponse.pm 2001/01/19 20:05:40 1.9 +++ loncom/homework/radiobuttonresponse.pm 2001/02/05 18:19:28 1.11 @@ -121,11 +121,23 @@ sub displayfoils { push (@whichfalse,$afalse); } splice(@whichfalse,$answer,0,$truelist[$whichtrue]); - my $temp=0; &Apache::lonxml::debug("the true statement is $answer"); - foreach $name (@whichfalse) { - $result.="
".$Apache::response::foilgroup{$name.'.text'}."\n"; - $temp++; + if ($Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"} =~ /^correct/ ) { + foreach $name (@whichfalse) { + $result.="
"; + if ($Apache::response::foilgroup{$name.'.value'} eq 'true') { + $result.='Correct'; + } else { + $result.='Incorrect'; + } + $result.=":".$Apache::response::foilgroup{$name.'.text'}."\n"; + } + } else { + my $temp=0; + foreach $name (@whichfalse) { + $result.="
".$Apache::response::foilgroup{$name.'.text'}."\n"; + $temp++; + } } return $result."
"; }