Index: openacs-4/packages/assessment/www/asm-admin/action-params.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/www/asm-admin/action-params.tcl,v diff -u -r1.6 -r1.7 --- openacs-4/packages/assessment/www/asm-admin/action-params.tcl 9 Jun 2005 19:19:47 -0000 1.6 +++ openacs-4/packages/assessment/www/asm-admin/action-params.tcl 12 Jun 2006 02:49:51 -0000 1.7 @@ -69,16 +69,15 @@ db_foreach get_params {} { set choices [list] if { $type == "n" } { - if { $action_perform == "aa" || $action_perform == "m"} { + if { $action_perform == "aa" || $action_perform == "m" || $action_perform == "or" || $action_perform == "sa"} { set choices [db_list_of_lists choices {}] } else { set choices [db_list_of_lists prev_choices {}] } } else { set choices [db_list_of_lists choices_param $query] - } - - set parameter [list [list param_$parameter_id:text(select),optional [list label $varname] [list options $choices] [list help_text $description]]] + } + set parameter [list [list param_$parameter_id:text(select),optional [list label $varname] [list html [list style "width:200px"]] [list options $choices] [list help_text $description]]] ad_form -extend -name get_params -form $parameter }