summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-12-22 15:46:34 -0800
committerMark Wells <mark@freeside.biz>2016-12-22 15:47:17 -0800
commit6d1586037b5b12a7b8097750372241aba18c730c (patch)
treed2fb411c0ba59db6e280a4c4d0d3530313aa9cda
parentb49e60810267101b83b9b2133e5dfc90d1663cdc (diff)
include with_recurringInd in paymentech config migration, #19571
-rw-r--r--FS/FS/pay_batch/paymentech.pm9
1 files changed, 8 insertions, 1 deletions
diff --git a/FS/FS/pay_batch/paymentech.pm b/FS/FS/pay_batch/paymentech.pm
index 1282507..3cf3134 100644
--- a/FS/FS/pay_batch/paymentech.pm
+++ b/FS/FS/pay_batch/paymentech.pm
@@ -175,7 +175,14 @@ sub _upgrade_gateway {
my $conf = FS::Conf->new;
my @batchconfig = $conf->config('batchconfig-paymentech');
my %options;
- @options{ qw(bin terminalID merchantID login password ) } = @batchconfig;
+ @options{ qw(
+ bin
+ terminalID
+ merchantID
+ login
+ password
+ with_recurringInd
+ ) } = @batchconfig;
$options{'industryType'} = 'EC';
( 'Paymentech', %options );
}