diff options
author | ivan <ivan> | 2003-07-23 15:36:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-07-23 15:36:56 +0000 |
commit | 36cd4eb55a365f73330e05369b03d74006409c7c (patch) | |
tree | da42765edb55282dfc0e602e6f55487f67ac87ff /httemplate/edit/cust_main.cgi | |
parent | 40a6ffa02d30786a147897e886169c3855dc3c0e (diff) |
fix spurious "can't purchase pkgpart" errors
Diffstat (limited to 'httemplate/edit/cust_main.cgi')
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index df7a8d652..3777cc3e5 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -481,7 +481,7 @@ unless ( $custnum ) { foreach my $part_pkg ( @part_pkg ) { print qq!<OPTION VALUE="!, # $part_pkg->pkgpart. "_". $pkgpart{ $part_pkg->pkgpart }, '"'; - $part_pkg->pkgpart. "_". $part_pkg->svcpart, '"'; + $part_pkg->pkgpart. "_". $part_pkg->svcpart('svc_acct'), '"'; print " SELECTED" if $saved_pkgpart && ( $part_pkg->pkgpart == $saved_pkgpart ); print ">", $part_pkg->pkg, " - ", $part_pkg->comment; } |