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/misc/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/misc/process')
-rw-r--r-- | httemplate/misc/process/payment.cgi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/misc/process/payment.cgi b/httemplate/misc/process/payment.cgi index a475786dd..dcfcc0b85 100644 --- a/httemplate/misc/process/payment.cgi +++ b/httemplate/misc/process/payment.cgi @@ -164,7 +164,10 @@ if ( $cgi->param('save') ) { #false laziness w/FS:;cust_main::realtime_bop - check both to make sure # working correctly if ( $payby eq 'CARD' && - grep { $_ eq cardtype($payinfo) } $conf->config('cvv-save') ) { + ( (grep { $_ eq cardtype($payinfo) } $conf->config('cvv-save')) + || $conf->exists('business-onlinepayment-verification') + ) + ) { $new->set( 'paycvv' => $paycvv ); } else { $new->set( 'paycvv' => ''); |