diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-07-09 08:27:53 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-07-16 12:06:02 -0400 |
| commit | a90d069b1f1d814a91bf7cb3eb0d7ac9fdec7e08 (patch) | |
| tree | d73731e2f2abad58241bace7c0e093ea2def7846 /FS | |
| parent | b4647550d33068067925f7f3fe8d6fe4f02a67e4 (diff) | |
RT# 74435 - Fixed error with refund link on payment history page not allowing batch refund when batch payment was made.
Conflicts:
FS/FS/cust_main/Billing_Realtime.pm
httemplate/view/cust_main/menu.html
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 2 |
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 ae41c70c4..c503b45e6 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -1479,7 +1479,7 @@ sub realtime_refund_bop { $self->agent->payment_gateway( 'method' => $options{method}, #'payinfo' => $payinfo, ); - my( $processor, $login, $password, $namespace ) = + ( $processor, $login, $password, $namespace ) = map { my $method = "gateway_$_"; $payment_gateway->$method } qw( module username password namespace ); |
