[freeside-commits] branch FREESIDE_3_BRANCH updated. 1e88509da1f9e4cc1626f1714f64953f9efba8e3
Mitch Jackson
mitch at freeside.biz
Wed Dec 5 09:40:01 PST 2018
The branch, FREESIDE_3_BRANCH has been updated
via 1e88509da1f9e4cc1626f1714f64953f9efba8e3 (commit)
from e41df0b878914b09c30ee7c75fe3b34fa7bd68b2 (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 1e88509da1f9e4cc1626f1714f64953f9efba8e3
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