summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-07-09 08:27:53 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-07-09 08:52:28 -0400
commit3a532ec892ee17b58691d0c04baead999ebdbab9 (patch)
tree2802f0ce405cf3783c6451c2651d36c0245df8bc /FS/FS/cust_main
parentb94ae73fdc40568f33b7f7dbdac15bda18fb9347 (diff)
RT# 74435 - Fixed error with refund link on payment history page not allowing batch refund when batch payment was made.
Diffstat (limited to 'FS/FS/cust_main')
-rw-r--r--FS/FS/cust_main/Billing_Realtime.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm
index df14104..0769eb5 100644
--- a/FS/FS/cust_main/Billing_Realtime.pm
+++ b/FS/FS/cust_main/Billing_Realtime.pm
@@ -1530,7 +1530,7 @@ sub realtime_refund_bop {
my $payment_gateway =
$self->agent->payment_gateway( 'method' => $options{method} );
- my( $processor, $login, $password, $namespace ) =
+ ( $processor, $login, $password, $namespace ) =
map { my $method = "gateway_$_"; $payment_gateway->$method }
qw( module username password namespace );