reserve/request.pl Fixing superlibrarian flag checking

superlibrarian flag was checked without %2 on reserve/request.pl
This commit is contained in:
Henri-Damien LAURENT 2009-09-21 16:32:40 +02:00
parent 60549d6584
commit 067f40a287

View file

@ -337,7 +337,7 @@ foreach my $biblioitemnumber (@biblioitemnumbers) {
if (! C4::Context->preference("canreservefromotherbranches")){
# cant reserve items so need to check if item homebranch and userenv branch match if not we cant reserve
my $userenv = C4::Context->userenv;
if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
if ( ($userenv) && ( $userenv->{flags} %2 != 1 ) ) {
$item->{cantreserve} = 1 if ( $item->{homebranch} ne $userenv->{branch} );
}
}