diff options
author | jeff <jeff> | 2009-12-27 01:01:46 +0000 |
---|---|---|
committer | jeff <jeff> | 2009-12-27 01:01:46 +0000 |
commit | f4c0b55a0cdab16ed8d9051b96e711b9508393b6 (patch) | |
tree | 2d98d36ad892f08cda46e522c9e3a7b695db0be9 /FS | |
parent | c7c3d9669ba1e30d0bb732a2b5f899d74e6d7473 (diff) |
improve spacing around county
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_location.pm | 4 | ||||
-rw-r--r-- | FS/FS/cust_main.pm | 4 |
2 files changed, 4 insertions, 4 deletions
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 b23ccf127..daced7b49 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -1996,9 +1996,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++; } } |