[BACK]Return to State.pm CVS log [TXT][DIR] Up to [local] / RT / Invoicing / lib / RTI

Diff for /RT/Invoicing/lib/RTI/State.pm between version 1.1 and 1.2

version 1.1, 2011/12/22 04:52:42 version 1.2, 2011/12/30 05:01:56
Line 119 
Line 119 
     my ($self, $custid) = @_;      my ($self, $custid) = @_;
   
     $self->_match_payments;      $self->_match_payments;
     return $self->{_table}->{unpaid}->{$custid};      return defined $custid
           ? $self->{_table}->{unpaid}->{$custid}
           : $self->{_table}->{unpaid};
 }  }
   
 sub save {  sub save {

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>