From 62939905ff73736ea366791726e3372f59f274a9 Mon Sep 17 00:00:00 2001 From: Mike Robinson Date: Wed, 25 Apr 2012 16:59:55 -0500 Subject: [PATCH] Don't default 'payname' to first/last name if paying by check. (#15819) In this case, 'payname' is the name of the financial institution and there is no default. --- FS/FS/ClientAPI/MyAccount.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 7bc3011d2..e9394e4df 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -729,7 +729,7 @@ sub payment_info { $return{payinfo2} = $payinfo2; $return{paytype} = $cust_main->paytype; $return{paystate} = $cust_main->paystate; - + $return{payname} = $cust_main->payname; # override 'first/last name' default from above, if any. Is instution-name here. (#15819) } if ( $conf->config('prepayment_discounts-credit_type') ) { -- 2.11.0