From 0f75f84be04be93b73c32bf8a1e34d539f753c06 Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Wed, 28 Sep 2016 15:08:53 -0500 Subject: [PATCH 1/1] 72456: Directions - override company_address [context bug fix] --- httemplate/elements/coord-links.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/httemplate/elements/coord-links.html b/httemplate/elements/coord-links.html index 586a7109d..db04dad97 100644 --- a/httemplate/elements/coord-links.html +++ b/httemplate/elements/coord-links.html @@ -51,8 +51,9 @@ my $apikey = $conf->config('google_maps_api_key'); #for directions link my @origin = $opt{company_address} ? @{ $opt{company_address} } - : ( $conf->config('company_physical_address', $agentnum) || - $conf->config('company_address', $agentnum) ); + : ( $conf->config('company_physical_address', $agentnum) + ? $conf->config('company_physical_address', $agentnum) + : $conf->config('company_address', $agentnum) ); my $origin = uri_escape(join(',', @origin)); -- 2.11.0