[freeside-commits] freeside/FS/FS cust_main.pm, 1.464.2.15, 1.464.2.16 cust_location.pm, 1.2.4.2, 1.2.4.3

Jeff Finucane,420,, jeff at wavetail.420.am
Sat Dec 26 17:01:48 PST 2009


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv28609

Modified Files:
      Tag: FREESIDE_1_9_BRANCH
	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.2.4.2
retrieving revision 1.2.4.3
diff -u -d -r1.2.4.2 -r1.2.4.3
--- cust_location.pm	23 Dec 2009 21:22:14 -0000	1.2.4.2
+++ cust_location.pm	27 Dec 2009 01:01:46 -0000	1.2.4.3
@@ -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.464.2.15
retrieving revision 1.464.2.16
diff -u -d -r1.464.2.15 -r1.464.2.16
--- cust_main.pm	23 Dec 2009 21:22:14 -0000	1.464.2.15
+++ cust_main.pm	27 Dec 2009 01:01:45 -0000	1.464.2.16
@@ -1996,9 +1996,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