From 6189bbdb6213bb8c4a6d511d2399ff809d76e492 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 6 Oct 2017 11:49:38 -0300 Subject: [PATCH] Bug 19198: do not autovivify --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 6ba87a2fa7..b915b34007 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -893,7 +893,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 && not exists $needsconfirmation{RENEW_ISSUE} ) { if ( $toomany->{max_allowed} == 0 ) { $needsconfirmation{PATRON_CANT} = 1; } -- 2.11.0