diff options
author | ivan <ivan> | 2001-09-06 20:42:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-06 20:42:00 +0000 |
commit | 57d69d5c1f98f778a0df82795ce21ee7bd21042a (patch) | |
tree | 63f890cf25311b66c712933c84f64e43718039cd /httemplate/edit/process | |
parent | db1b6ebfe35aba1f4d2580b13a0a74ac317784ba (diff) |
finally fix part_svc!!!
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-x | httemplate/edit/process/part_svc.cgi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/edit/process/part_svc.cgi b/httemplate/edit/process/part_svc.cgi index 093d86a75..5652c5805 100755 --- a/httemplate/edit/process/part_svc.cgi +++ b/httemplate/edit/process/part_svc.cgi @@ -8,7 +8,11 @@ my $new = new FS::part_svc ( { map { $_, scalar($cgi->param($_)); # } qw(svcpart svc svcdb) - } fields('part_svc') + } ( fields('part_svc'), + map { my $svcdb = $_; + map { ( $svcdb.'__'.$_, $svcdb.'__'.$_.'_flag' ) } + fields($svcdb) + } qw( svc_acct svc_domain svc_acct_sm svc_forward svc_www ) ) } ); my $error; |