From d1057b80daa47cfda74f4bd217ced5d90963a3b8 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 22 Apr 2015 08:58:08 -0400 Subject: [PATCH] Bug 11084 [QA Followup] - Suppress userenv warning Signed-off-by: Katrin Fischer Signed-off-by: Brendan A Gallagher --- C4/Items.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Items.pm b/C4/Items.pm index 5b5b5d4..26e9342 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -2336,7 +2336,8 @@ sub DelItemCheck { if ($onloan){ $error = "book_on_loan" } - elsif ( !C4::Context->IsSuperLibrarian() + elsif ( defined C4::Context->userenv + and !C4::Context->IsSuperLibrarian() and C4::Context->preference("IndependentBranches") and ( C4::Context->userenv->{branch} ne $item->{'homebranch'} ) ) { -- 2.1.4