--- loncom/homework/lonsimpleproblemedit.pm 2010/01/27 23:26:09 1.31 +++ loncom/homework/lonsimpleproblemedit.pm 2010/06/06 02:40:35 1.32 @@ -1,7 +1,7 @@ # The LearningOnline Network # Simple Problem Parameter Setting "Editor" # -# $Id: lonsimpleproblemedit.pm,v 1.31 2010/01/27 23:26:09 raeburn Exp $ +# $Id: lonsimpleproblemedit.pm,v 1.32 2010/06/06 02:40:35 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -137,11 +137,11 @@ sub foil { my $selectvalue=&Apache::loncommon::select_form( $value, 'value'.$number, - %values); + \%values); my $selectposition=&Apache::loncommon::select_form( $position, 'position'.$number, - &Apache::lonlocal::texthash(%positions)); + {&Apache::lonlocal::texthash(%positions)}); my $text=$qparms{$prefix.'text'.$number}; my %lt=&Apache::lonlocal::texthash('foil' => 'Foil', 'value' => 'Value', @@ -309,7 +309,7 @@ sub handler { .&Apache::loncommon::select_form( $qtype, 'questiontype', - &Apache::lonlocal::texthash(%questiontypes)) + {&Apache::lonlocal::texthash(%questiontypes)}) .'' ); $r->print( @@ -343,7 +343,7 @@ sub handler { &Apache::loncommon::select_form( $randomize, 'randomize', - &Apache::lonlocal::texthash(%randomizes)). + {&Apache::lonlocal::texthash(%randomizes)}). ''); # Option Response: Options if ($qtype eq 'option') { @@ -356,7 +356,7 @@ sub handler { $options.'" />'.&mt('Add new option').': '. ''. &mt('Delete an option').': '. - &Apache::loncommon::select_form('','delopt',('' => '',%optionshash)). + &Apache::loncommon::select_form('','delopt',{'' => '',%optionshash}). ''); } # Foils @@ -389,7 +389,7 @@ sub handler { &Apache::loncommon::select_form( $stringtype, 'stringtype', - &Apache::lonlocal::texthash(%stringtypes)). + {&Apache::lonlocal::texthash(%stringtypes)}). '
'); # Hint $r->print(&hint());