Bug 5548: Correct punctuation in patch
Punctuation should be a semi-colon not a comma It works but is a trap for the unwary in the future Signed-off-by: Ian Walls <ian.walls@bywatersolutions.com> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
1b402c7422
commit
78dfaa1831
1 changed files with 1 additions and 1 deletions
|
@ -2255,7 +2255,7 @@ sub AddRenewal {
|
|||
unless ($datedue) {
|
||||
|
||||
my $borrower = C4::Members::GetMemberDetails( $borrowernumber, 0 ) or return undef;
|
||||
my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'} ,
|
||||
my $itemtype = (C4::Context->preference('item-level_itypes')) ? $biblio->{'itype'} : $biblio->{'itemtype'};
|
||||
|
||||
$datedue = (C4::Context->preference('RenewalPeriodBase') eq 'date_due') ?
|
||||
C4::Dates->new($issuedata->{date_due}, 'iso') :
|
||||
|
|
Loading…
Reference in a new issue