summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-08-07 23:56:06 -0700
committerIvan Kohler <ivan@freeside.biz>2012-08-07 23:56:06 -0700
commitce1554c9cbd7d97adeb8d55f23cdd18e12e6a623 (patch)
treed2b6bcf29bb46448bc0258bc9acc5f5f78aebad7
parent765a5c92d73a39836999c8442e70dc0bfb1f995d (diff)
fix compilation error
-rw-r--r--FS/FS/pay_batch.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/pay_batch.pm b/FS/FS/pay_batch.pm
index e98cf5aeb..b8da9b49b 100644
--- a/FS/FS/pay_batch.pm
+++ b/FS/FS/pay_batch.pm
@@ -1083,7 +1083,7 @@ sub _upgrade_data {
for my $format (keys %export_info) {
my $mod = "FS::pay_batch::$format";
if ( $mod->can('_upgrade_gateway')
- and exists( $conf->config("batchconfig-$format") ) ) {
+ and $conf->exists("batchconfig-$format") ) {
local $@;
my ($module, %gw_options) = $mod->_upgrade_gateway;