From 01fe412dabf74fb74eeebf2cafb0b30914cf9ddc Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 13 Sep 2017 11:59:19 +0000 Subject: [PATCH] Bug 19198 (QA Followup) Fix typo in conditions '&' should be '&&' --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 6ab251f..264cb67 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -888,7 +888,7 @@ sub CanBookBeIssued { and $issue->borrowernumber == $borrower->{'borrowernumber'} ? 1 : 0 ); my $toomany = TooMany( $borrower, $item->{biblionumber}, $item, { onsite_checkout => $onsite_checkout, switch_onsite_checkout => $switch_onsite_checkout, } ); # if TooMany max_allowed returns 0 the user doesn't have permission to check out this book - if ( $toomany & !$needsconfirmation{RENEW_ISSUE} ) { + if ( $toomany && !$needsconfirmation{RENEW_ISSUE} ) { if ( $toomany->{max_allowed} == 0 ) { $needsconfirmation{PATRON_CANT} = 1; } -- 2.1.4