From: jeff Date: Sun, 27 Dec 2009 01:00:48 +0000 (+0000) Subject: improve spacing around county X-Git-Tag: root_of_svc_elec_features~597 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=085a29e3efffe7db3277a2f7f13ff6bd364835fb improve spacing around county --- diff --git a/FS/FS/cust_location.pm b/FS/FS/cust_location.pm index 997532c90..87c6c3eb6 100644 --- a/FS/FS/cust_location.pm +++ b/FS/FS/cust_location.pm @@ -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++; } } diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 17dda9cf1..329b46188 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -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++; } }