summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2001-12-17 23:59:56 +0000
committerivan <ivan>2001-12-17 23:59:56 +0000
commitff600bea7c4f34854be39bc4a6b56f20c1605c4d (patch)
treeed889bb457c6017a9b09a8bba34e8457172c0d8d
parentd90a6a6e37b227e9265be011197ab20b56bfa7ca (diff)
fixes
Argument "" isn't numeric in ncmp at /usr/local/lib/perl5/site_perl/5.005/FS/cust_bill.pm line 254.
-rw-r--r--FS/FS/cust_bill.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index b65df89c4..1a2ecaf1d 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -251,7 +251,7 @@ Returns all payment applications (see L<FS::cust_bill_pay>) for this invoice.
sub cust_bill_pay {
my $self = shift;
- sort { $a->_date <=> $b->date }
+ sort { $a->_date <=> $b->_date }
qsearch( 'cust_bill_pay', { 'invnum' => $self->invnum } );
}
@@ -493,7 +493,7 @@ sub print_text {
=head1 VERSION
-$Id: cust_bill.pm,v 1.12 2001-10-15 12:16:41 ivan Exp $
+$Id: cust_bill.pm,v 1.13 2001-12-17 23:59:56 ivan Exp $
=head1 BUGS