--- loncom/homework/rankresponse.pm 2015/01/19 15:35:53 1.72 +++ loncom/homework/rankresponse.pm 2016/01/22 22:42:51 1.73 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # rank style response # -# $Id: rankresponse.pm,v 1.72 2015/01/19 15:35:53 goltermann Exp $ +# $Id: rankresponse.pm,v 1.73 2016/01/22 22:42:51 damieng Exp $ # Copyright Michigan State University Board of Trustees # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). @@ -362,7 +362,7 @@ sub displayfoils { my $text=$Apache::response::foilgroup{$name.'.text'}; my $value=shift(@correctorder); if ($target eq 'web') { - $result.='
'.$value.': '.$text; + $result.='
'.$value.': '.$text.'
'; } else { $result.=' \strut\\\\\strut '.$value.':'.$text; } @@ -444,15 +444,17 @@ sub displayfoils { } my $text=$Apache::response::foilgroup{$name.'.text'}; if ($target ne 'tex') { + $result .= '
'; if ($Apache::lonhomework::type ne 'exam') { - $result.='
'.$optionlist.$text."\n"; + $result.=$optionlist.$text."\n"; } else { - $result.='
'.$text."\n"; + $result.=$text."\n"; } if ($Apache::lonhomework::type eq 'exam') { my @values=(1..scalar(@whichopt)); $result.=&Apache::optionresponse::webbubbles(\@values,\@whichopt,$temp,$lastopt); } + $result .= '
'; } else { if ($Apache::lonhomework::type eq 'exam') { my $itemlabel;