fix all location selects hidden on new customer add, fallout from city tax stuff...
authorivan <ivan>
Thu, 22 Oct 2009 08:58:58 +0000 (08:58 +0000)
committerivan <ivan>
Thu, 22 Oct 2009 08:58:58 +0000 (08:58 +0000)
httemplate/elements/select-county.html

index aa9f453..6d498be 100644 (file)
@@ -136,7 +136,7 @@ my $onchange =
   ( $opt{'disable_cityupdate'} ? '' : $pre.'county_changed(this); ' ).
   $opt{'onchange'};
 
-$opt{'style'} ||= [];
+my $county_style = $opt{'style'} ? [ @{ $opt{'style'} } ] : [];
 
 my @counties = ();
 if ( $countyflag ) {
@@ -144,14 +144,14 @@ if ( $countyflag ) {
   @counties = map { length($_) ? $_ : $opt{'empty_data_value'} }
                   counties( $opt{'state'}, $opt{'country'} );
 
-  push @{ $opt{'style'} }, 'display:none'
+  push @$county_style, 'display:none'
     unless scalar(@counties) > 1;
 
 }
 
 my $style =
-  scalar(@{$opt{style}})
-    ? 'STYLE="'. join(';', @{$opt{style}}). '"'
+  scalar(@$county_style)
+    ? 'STYLE="'. join(';', @$county_style). '"'
     : '';
 
 </%init>