summaryrefslogtreecommitdiff
path: root/FS
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:27:53 -0400
commitcfb19dcc27824b46d9f74a7e01b16328c8e66f7f (patch)
tree9bf2804bbbdeee4c7b729bcc021a8999566caa89 /FS
parent6de42f2b2f6c58cf6ce0db933c2d8d5d40b411ca (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')
-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 78f2cbcbe..f4d87ddd1 100644
--- a/FS/FS/cust_main/Billing_Realtime.pm
+++ b/FS/FS/cust_main/Billing_Realtime.pm
@@ -1531,7 +1531,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 );