summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Davis <jeremyd@freeside.biz>2014-03-12 09:44:46 -0400
committerJeremy Davis <jeremyd@freeside.biz>2014-03-12 09:44:46 -0400
commitbfefb704d76fffc1ab82626c8dec03931457a1cb (patch)
treeaed5331eada34e6865a273f60be25d03cf6c819d
parentfaa92dd0fd0b875886378de7c91c59a4049f1168 (diff)
#28004 Adjustments to directions link on customer view page
-rw-r--r--httemplate/elements/coord-links.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/coord-links.html b/httemplate/elements/coord-links.html
index 02a224a00..4c263c638 100644
--- a/httemplate/elements/coord-links.html
+++ b/httemplate/elements/coord-links.html
@@ -35,10 +35,12 @@ $m->interp->apply_escapes($js_name, 'js_string');
$js_name =~ s/^'//;
$js_name =~ s/'$//;
+my @origin;
my $origin;
#for directions link
if ( $agentnum =~ /^\d+$/ ) {
- $origin = FS::Conf->new->config('company_address', $agentnum);
+ @origin = FS::Conf->new->config('company_address', $agentnum);
+ $origin = join (/,/,@origin);
$origin = uri_escape($origin);
}
</%init>