[freeside-commits] branch master updated. 94a109cdf724aa61b2bddf8636c935c00827d914

Mitch Jackson mitch at freeside.biz
Wed Dec 5 09:38:47 PST 2018


The branch, master has been updated
       via  94a109cdf724aa61b2bddf8636c935c00827d914 (commit)
      from  2e93aa2c2371022e78d45688bfb675fbcca73c63 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 94a109cdf724aa61b2bddf8636c935c00827d914
Author: Mitch Jackson <mitch at freeside.biz>
Date:   Wed Dec 5 12:37:00 2018 -0500

    RT# 81574 Fix FS::GeocodeCache error with set_coord()

diff --git a/FS/FS/geocode_Mixin.pm b/FS/FS/geocode_Mixin.pm
index 87ad9acfd..2b4304571 100644
--- a/FS/FS/geocode_Mixin.pm
+++ b/FS/FS/geocode_Mixin.pm
@@ -182,7 +182,7 @@ sub set_coord {
 
   my $address =
     join ',',
-    map { $self->$_ ? uri_escape( $self->get( $_ ) ) : () }
+    map { $self->get( $_ ) ? uri_escape( $self->get( $_ ) ) : () }
     qw( address1 address2 city state zip country_full );
 
   my $query_url = sprintf

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/geocode_Mixin.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list