summaryrefslogtreecommitdiff
path: root/FS/FS/payinfo_Mixin.pm
diff options
context:
space:
mode:
authorivan <ivan>2008-05-05 02:11:23 +0000
committerivan <ivan>2008-05-05 02:11:23 +0000
commit8428bf0d174697c35f3dc2a0c28386b4b9c76124 (patch)
tree7b41a7501c49034e1e1fb670174f8f2db92dd43a /FS/FS/payinfo_Mixin.pm
parentc2e0c1d06e2a9b9146f9b538ce07f57664e16966 (diff)
hopefully really a better fix for using new payment duplicate stuff with cc encryption :/
Diffstat (limited to 'FS/FS/payinfo_Mixin.pm')
-rw-r--r--FS/FS/payinfo_Mixin.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/FS/FS/payinfo_Mixin.pm b/FS/FS/payinfo_Mixin.pm
index f2edbd2..bdfe6c9 100644
--- a/FS/FS/payinfo_Mixin.pm
+++ b/FS/FS/payinfo_Mixin.pm
@@ -232,13 +232,16 @@ sub payinfo_check {
} else {
if ( $self->is_encrypted($self->payinfo) ) {
#something better? all it would cause is a decryption error anyway?
- my $error = $self->ut_anythingn('payinfo');
+ my $error = $self->ut_anything('payinfo');
return $error if $error;
} else {
my $error = $self->ut_textn('payinfo');
return $error if $error;
}
}
+
+ '';
+
}
=head1 BUGS