diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-05-13 17:28:09 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-05-13 17:28:09 -0700 |
commit | 2ec92076c7dae5648da28e510efa1f733da9fd76 (patch) | |
tree | a32157c57824633517caab962baf56ae89c4dacc /httemplate/edit/process | |
parent | ec443f3ab9fd937325691b17974ea5aa7dce264d (diff) | |
parent | 039d72ae9e7adf98f46c3b4219100d57208c3685 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-x | httemplate/edit/process/cust_main.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/cust_main.cgi b/httemplate/edit/process/cust_main.cgi index 82ec50c36..6961d18c0 100755 --- a/httemplate/edit/process/cust_main.cgi +++ b/httemplate/edit/process/cust_main.cgi @@ -97,8 +97,8 @@ if ( ($cgi->param('same') || '') eq 'Y' ) { # but explicitly avoid setting ship_ fields my $new = new FS::cust_main ( { - map { ( $_, scalar($cgi->param($_)) ) } (fields('cust_main')), - map { ( "ship_$_", '' ) } (FS::cust_main->location_fields) + (map { ( $_, scalar($cgi->param($_)) ) } (fields('cust_main'))), + (map { ( "ship_$_", '' ) } (FS::cust_main->location_fields)) } ); $new->invoice_noemail( ($cgi->param('invoice_email') eq 'Y') ? '' : 'Y' ); |