--- loncom/homework/optionresponse.pm 2001/06/27 18:51:59 1.19 +++ loncom/homework/optionresponse.pm 2001/07/18 20:27:21 1.20 @@ -266,9 +266,9 @@ sub start_foil { if ($$tagstack['-2'] eq 'conceptgroup') { $level = '-3'; } my @opt; eval '@opt ='.&Apache::lonxml::get_param('options',$parstack,$safeeval,$level); - $result.=&Apache::edit::text_arg('Name:','name',$token). - &Apache::edit::select_arg('Correct Option:','value',['unused',(@opt)],$token). - ''; + $result.=&Apache::edit::text_arg('Name:','name',$token); + $result.= &Apache::edit::select_or_text_arg('Correct Option:','value',['unused',(@opt)],$token,'15'); + $result .= ''; } if ($target eq 'modified') { my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,'value','name');