improve spacing around county
authorjeff <jeff>
Sun, 27 Dec 2009 01:00:48 +0000 (01:00 +0000)
committerjeff <jeff>
Sun, 27 Dec 2009 01:00:48 +0000 (01:00 +0000)
FS/FS/cust_location.pm
FS/FS/cust_main.pm

index 997532c..87c6c3e 100644 (file)
@@ -202,9 +202,9 @@ sub location_label {
   foreach (qw ( city county state zip ) ) {
     my $method = "$prefix$_";
     if ( $self->$method ) {
-      $line .= '(' if $method eq 'county';
+      $line .= ' (' if $method eq 'county';
       $line .= ($notfirst ? ' ' : $separator). &$escape($self->$method);
-      $line .= ')' if $method eq 'county';
+      $line .= ' )' if $method eq 'county';
       $notfirst++;
     }
   }
index 17dda9c..329b461 100644 (file)
@@ -1998,9 +1998,9 @@ sub location_label {
   foreach (qw ( city county state zip ) ) {
     my $method = "$prefix$_";
     if ( $self->$method ) {
-      $line .= '(' if $method eq 'county';
+      $line .= ' (' if $method eq 'county';
       $line .= ($notfirst ? ' ' : $separator). &$escape($self->$method);
-      $line .= ')' if $method eq 'county';
+      $line .= ' )' if $method eq 'county';
       $notfirst++;
     }
   }