From c43eadf3c77efc317fe14fd347fa4bc68fdfa748 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Thu, 28 Feb 2008 08:36:34 +1300 Subject: [PATCH] Fix for bug 1908 Signed-off-by: Joshua Ferraro --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index ecd5e18d01..0b6892e786 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -755,7 +755,7 @@ sub CanBookBeIssued { my $userenv = C4::Context->userenv; if ( ($userenv) && ( $userenv->{flags} != 1 ) ) { $issuingimpossible{NOTSAMEBRANCH} = 1 - if ( $item->{C4::Context->preference("HomeOrHoldingbranch")} ne $userenv->{branch} ); + if ( $item->{C4::Context->preference("HomeOrHoldingBranch")} ne $userenv->{branch} ); } } -- 2.39.5