diff options
author | C.J. Adams-Collier <cjac@colliertech.org> | 2014-09-19 17:00:51 -0700 |
---|---|---|
committer | C.J. Adams-Collier <cjac@colliertech.org> | 2014-09-19 17:00:51 -0700 |
commit | 4089c2c6d951b1d4355dbe63a692703e36a49ba9 (patch) | |
tree | 026e27a15a0055d8d85c82a68197355a6b45287b /httemplate/misc | |
parent | 443509720b707097d514f952706d34deee0f58ca (diff) |
FS RT #25694 - added two configuration options for requiring CVV data to be entered, one for back office data entry, and one to force re-entry even when CC data is on file
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/process/payment.cgi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/misc/process/payment.cgi b/httemplate/misc/process/payment.cgi index 981614e76..27b818660 100644 --- a/httemplate/misc/process/payment.cgi +++ b/httemplate/misc/process/payment.cgi @@ -122,6 +122,8 @@ if ( $payby eq 'CHEK' ) { or errorpage("CVV2 (CVC2/CID) is three digits."); $paycvv = $1; } + }elsif( $conf->exists('backoffice-require_cvv') ){ + errorpage("CVV2 is required"); } } |