Report abuse

1
2
3
4
5
6
7
8
# Then, in your script, you can build the params this way...
$param{tagsdelimiter_option_loop} = [
    { label => 'Comma', value => ',' },
    { label =>  'Space', value => ' ', selected => option_selected() },
];

# And, of course, elsewhere...
sub option_selected { 'selected="selected"' }