Bug 5549 : Fixing typo in C4/Circulation.pm
days_between not daysBetween
This commit is contained in:
parent
da14b2f4ba
commit
4076e43d22
1 changed files with 1 additions and 1 deletions
|
@ -1796,7 +1796,7 @@ sub _FixFineDaysOnReturn {
|
|||
my $calendar = Koha::Calendar->new( branchcode => $branchcode );
|
||||
my $today = C4::Dates->new();
|
||||
|
||||
my $deltadays = $calendar->daysBetween( $datedue, C4::Dates->new() );
|
||||
my $deltadays = $calendar->days_between( $datedue, C4::Dates->new() );
|
||||
|
||||
my $circcontrol = C4::Context::preference('CircControl');
|
||||
my $issuingrule = GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode );
|
||||
|
|
Loading…
Reference in a new issue