From a93a84749785cce6b7226181acac35799d3e70cf Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 11 May 2009 16:22:04 -0500 Subject: [PATCH] excised hard-coded reference to HLT Note to Chris Cormack: I suspect the current ability to override most circulation conditions is sufficient, but if HLT still needs to establish a patron category that can ignore issuingimpossible limitations, needs to be done in a more flexible way. Signed-off-by: Galen Charlton Signed-off-by: Henri-Damien LAURENT --- C4/Circulation.pm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index c91a15c89a..b60440642f 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -836,12 +836,6 @@ sub CanBookBeIssued { "$res->{'reservedate'} : $resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'})"; } } - if ( C4::Context->preference("LibraryName") eq "Horowhenua Library Trust" ) { - if ( $borrower->{'categorycode'} eq 'W' ) { - my %emptyhash; - return ( \%emptyhash, \%needsconfirmation ); - } - } return ( \%issuingimpossible, \%needsconfirmation ); } -- 2.20.1