diff options
| author | Mark Wells <mark@freeside.biz> | 2015-08-14 16:32:21 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2015-08-14 16:50:38 -0700 |
| commit | df5bf851f4b008a243d4d5e94708c26b1fd80eb5 (patch) | |
| tree | 3a47d4692ae563ed5f0af55e5f968991cc75122c /httemplate/search/cust_pkg.cgi | |
| parent | b8bfc860f3439901d706dda50749968398e7e7ce (diff) | |
fix links from package report to services that use view/svc_Common, #37621
Diffstat (limited to 'httemplate/search/cust_pkg.cgi')
| -rwxr-xr-x | httemplate/search/cust_pkg.cgi | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index c88b3a1d5..f1e686a83 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -310,11 +310,14 @@ my $process_svc_labels = sub { foreach ( map { [ $_->label ] } @{ $part_svc->cust_pkg_svc } ) { push @out, [ { 'data' => $_->[0]. ':', - 'align'=> 'right', }, + 'align'=> 'right', + }, + { 'data' => $_->[1], 'align'=> 'left', - 'link' => $p. 'view/' . - $_->[2]. '.cgi?'. $_->[3], }, + 'link' => $p. 'view/cust_svc.cgi?' . $_->[3], + }, + ]; } } |
