diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2014-12-30 07:19:54 -0500 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2014-12-30 07:19:54 -0500 |
commit | 3c89032f8902e137e70528c5e8c3b24c4c40f238 (patch) | |
tree | 7936dc17e67d6d44264401bc22f8885e3add983c | |
parent | 013399a9b51875b841bbc1ce5a2dbf7583519d88 (diff) |
Ticket #32755 Fix eftcanda delay date
-rw-r--r-- | FS/FS/pay_batch/eft_canada.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/pay_batch/eft_canada.pm b/FS/FS/pay_batch/eft_canada.pm index ab9e6a3b6..b7a9e198e 100644 --- a/FS/FS/pay_batch/eft_canada.pm +++ b/FS/FS/pay_batch/eft_canada.pm @@ -149,7 +149,7 @@ sub process_date { @config = $conf->config('batchconfig-eft_canada'); } - my $process_delay = $config[3] || 1; + my $process_delay = $config[4] || 1; if ( (localtime(time))[2] >= 10 and $process_delay == 1 ) { # If downloading the batch after 10:00 local time, it likely won't make |