Bug 6885 Follow up patch, invert tested condition
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Not sure the brackets are nessecary, but I think I remember learning bitwise operators have a lower priority than other relational operators so wanted to make sure we notted the result of the bitwise and, not the flag Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
74984f5cf3
commit
6fd3635a59
1 changed files with 1 additions and 1 deletions
|
@ -2211,7 +2211,7 @@ sub DelItemCheck {
|
|||
if ($onloan){
|
||||
$error = "book_on_loan"
|
||||
}
|
||||
elsif ( C4::Context->userenv->{flags} & 1 and
|
||||
elsif ( !(C4::Context->userenv->{flags} & 1) and
|
||||
C4::Context->preference("IndependantBranches") and
|
||||
(C4::Context->userenv->{branch} ne
|
||||
$item->{C4::Context->preference("HomeOrHoldingBranch")||'homebranch'}) )
|
||||
|
|
Loading…
Reference in a new issue