diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-11-07 22:31:45 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-11-07 22:31:45 -0800 |
commit | c68d2a72e190e704bf1174f54ef2ec10e7517e64 (patch) | |
tree | 7e503434bc6f14204397a80486595560a5b08de0 | |
parent | cf9580877fc7fd9333b5e871a76fe8ec35c9f2b8 (diff) |
invoices look like they belong under customers
-rw-r--r-- | httemplate/view/cust_main/menu.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/menu.html b/httemplate/view/cust_main/menu.html index d12ec172f..c6aa15cd0 100644 --- a/httemplate/view/cust_main/menu.html +++ b/httemplate/view/cust_main/menu.html @@ -691,7 +691,9 @@ sub entry2link { #$target = $cgi->self_url; #XXX support installs outside /freeside in 4.x - $target = "/freeside/view/cust_main.cgi?show=$show;custnum=". $cust_main->custnum; + $target = '/freeside/view/cust_main.cgi?'. + 'show='. $entry->{show}. + ';custnum='. $cust_main->custnum; $cgi->param('show', $show); |