--- loncom/homework/optionresponse.pm 2003/10/27 20:04:34 1.94 +++ loncom/homework/optionresponse.pm 2003/11/04 18:37:40 1.95 @@ -1,7 +1,7 @@ # LearningOnline Network with CAPA # option list style responses # -# $Id: optionresponse.pm,v 1.94 2003/10/27 20:04:34 albertel Exp $ +# $Id: optionresponse.pm,v 1.95 2003/11/04 18:37:40 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -318,6 +318,8 @@ sub displayfoils { } else { $text=$value.': '.$text; } + } else { + $text='•'.$text; } $result.=$text."\n"; } elsif ($target eq 'tex') { @@ -367,6 +369,8 @@ sub displayfoils { my $text=$Apache::response::foilgroup{$name.'.text'}; if (!($text=~s||$optionlist|) && $Apache::lonhomework::type ne 'exam') { $text=$optionlist.$text; + } else { + $text='•'.$text; } $result.=$break.$text."\n"; if ($Apache::lonhomework::type eq 'exam') {