summaryrefslogtreecommitdiff
path: root/FS/FS/cust_location.pm
diff options
context:
space:
mode:
authorjeff <jeff>2009-12-27 01:00:48 +0000
committerjeff <jeff>2009-12-27 01:00:48 +0000
commit085a29e3efffe7db3277a2f7f13ff6bd364835fb (patch)
treeb85bc9e609de476f87c8781007e674e15e6b9704 /FS/FS/cust_location.pm
parent941599b7c5ccba1cb208577470eaecf70437d1cf (diff)
improve spacing around county
Diffstat (limited to 'FS/FS/cust_location.pm')
-rw-r--r--FS/FS/cust_location.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_location.pm b/FS/FS/cust_location.pm
index 997532c..87c6c3e 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++;
}
}