diff options
author | ivan <ivan> | 2008-02-13 21:50:11 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-02-13 21:50:11 +0000 |
commit | 0a498297d97b43e275d395caa06a2e58279d69d6 (patch) | |
tree | 66ec064f33ea6df79032148c6382a1625e0d28f3 | |
parent | 1a9c4389cffba3eae05662a2dbf467643cd04a05 (diff) |
fix compile error from hasty refactoring
-rwxr-xr-x | httemplate/misc/process/link.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/link.cgi b/httemplate/misc/process/link.cgi index 960326747..df15dca72 100755 --- a/httemplate/misc/process/link.cgi +++ b/httemplate/misc/process/link.cgi @@ -1,7 +1,7 @@ %unless ($error) { % #no errors, so let's view this customer. % my $custnum = $new->cust_pkg->custnum; -<% $cgi->redirect(popurl(3). "view/cust_main.cgi?<%$custnum%>#cust_pkg<%$pkgnum%>" ) %> +<% $cgi->redirect(popurl(3). "view/cust_main.cgi?$custnum#cust_pkg$pkgnum" ) %> %} else { % errorpage($error); %} |