X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_main.pm;h=329b461884e7f6c0a4acd5fa7798d9f2631c534c;hb=085a29e3efffe7db3277a2f7f13ff6bd364835fb;hp=17dda9cf1ab011ee6f6e602d314805195c17b3f9;hpb=b50700f72235bcbc23df43f4cf550b5676d70ed7;p=freeside.git 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++; } }