diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-09-28 15:08:53 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-09-28 15:21:05 -0500 |
commit | 081c6b3eeb0d2627e00bc39683748622acce87ef (patch) | |
tree | 1795d277fe81c55795f605fc1ed756c8d44bb192 /httemplate | |
parent | 4d7ddf6062215c4a829c786361886a9b80839dbc (diff) |
72456: Directions - override company_address [context bug fix]
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/coord-links.html | 5 |
1 files 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)); </%init> |