[freeside-commits] freeside/FS/FS/ClientAPI MyAccount.pm,1.46,1.47
Ivan,,,
ivan at wavetail.420.am
Wed Dec 13 22:00:47 PST 2006
- Previous message: [freeside-commits] freeside/FS/FS svc_acct.pm,1.208,1.209
- Next message: [freeside-commits] freeside/FS/FS cust_pay_void.pm, 1.4,
1.5 cust_refund.pm, 1.26, 1.27 payinfo_Mixin.pm, NONE,
1.1 Record.pm, 1.127, 1.128 cust_main.pm, 1.255,
1.256 Schema.pm, 1.36, 1.37 cust_pay.pm, 1.45, 1.46
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/FS/ClientAPI
In directory wavetail:/tmp/cvs-serv15602/FS/FS/ClientAPI
Modified Files:
MyAccount.pm
Log Message:
encryption fixes from huntsberg & jayce
Index: MyAccount.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/ClientAPI/MyAccount.pm,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- MyAccount.pm 7 Dec 2006 02:40:30 -0000 1.46
+++ MyAccount.pm 14 Dec 2006 06:00:45 -0000 1.47
@@ -130,7 +130,7 @@
}
if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
- $return{payinfo} = $cust_main->payinfo_masked;
+ $return{payinfo} = $cust_main->paymask;
@return{'month', 'year'} = $cust_main->paydate_monthyear;
}
@@ -175,7 +175,7 @@
if ( $p->{'payby'} =~ /^(CARD|DCRD)$/ ) {
$new->paydate($p->{'year'}. '-'. $p->{'month'}. '-01');
- if ( $new->payinfo eq $cust_main->payinfo_masked ) {
+ if ( $new->payinfo eq $cust_main->paymask ) {
$new->payinfo($cust_main->payinfo);
} else {
$new->paycvv($p->{'paycvv'});
- Previous message: [freeside-commits] freeside/FS/FS svc_acct.pm,1.208,1.209
- Next message: [freeside-commits] freeside/FS/FS cust_pay_void.pm, 1.4,
1.5 cust_refund.pm, 1.26, 1.27 payinfo_Mixin.pm, NONE,
1.1 Record.pm, 1.127, 1.128 cust_main.pm, 1.255,
1.256 Schema.pm, 1.36, 1.37 cust_pay.pm, 1.45, 1.46
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list