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-10-06 13:42:41 -0700 |
commit | 5405c718b31852df721eb8fd804d3836970f8494 (patch) | |
tree | d22ef6b83491a39d2d4af7f4ae4e5826e0094a7c /httemplate/misc/process | |
parent | 8ec8ca19c8554c06d3bfd33fda4c077b6807697c (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/process')
-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"); } } |