From: ivan Date: Sun, 5 Nov 2006 18:03:19 +0000 (+0000) Subject: fix auto-population of card_type SELECT in self-service payment form X-Git-Tag: TRIXBOX_2_6~876 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=f0487a6e83b54a1e4656b32603e7e40beeb4f788 fix auto-population of card_type SELECT in self-service payment form --- diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index fe9e8a11e..aa8ff9e58 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -253,7 +253,7 @@ sub payment_info { $return{payby} = $cust_main->payby; if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) { - #warn $return{card_type} = cardtype($cust_main->payinfo); + $return{card_type} = cardtype($cust_main->payinfo); $return{payinfo} = $cust_main->payinfo; @return{'month', 'year'} = $cust_main->paydate_monthyear;