1 <% include('tr-td-label.html', @_ ) %>
3 <TD BGCOLOR="#dddddd" <% $style %>><% $value %></TD>
7 <% include('hidden.html', %opt ) %>
13 my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
15 my $value = $opt{'formatted_value'} || $opt{'curr_value'} || $opt{'value'};
16 #compatibility with select-table and friends
17 if ( $opt{'multiple'} ) {
18 $value = [ split(/\s*,\s*/, $value) ] if !ref $value;
19 $value = join('<BR>', map {encode_entities($_)} @$value);
22 $value = encode_entities($value)