[freeside-commits] freeside/FS/FS cust_main.pm, 1.485, 1.486 cust_location.pm, 1.4, 1.5
Jeff Finucane,420,,
jeff at wavetail.420.am
Sat Dec 26 17:00:51 PST 2009
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv28550
Modified Files:
cust_main.pm cust_location.pm
Log Message:
improve spacing around county
Index: cust_location.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_location.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cust_location.pm 23 Dec 2009 21:21:14 -0000 1.4
+++ cust_location.pm 27 Dec 2009 01:00:48 -0000 1.5
@@ -202,9 +202,9 @@
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: cust_main.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main.pm,v
retrieving revision 1.485
retrieving revision 1.486
diff -u -d -r1.485 -r1.486
--- cust_main.pm 23 Dec 2009 21:21:14 -0000 1.485
+++ cust_main.pm 27 Dec 2009 01:00:48 -0000 1.486
@@ -1998,9 +1998,9 @@
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++;
}
}
More information about the freeside-commits
mailing list