TransformHTMLToXML bug default_ind_to_space
[koha.git] / reserve / request.pl
index a660950..58b42b3 100755 (executable)
@@ -26,6 +26,7 @@ script to place reserves/requests
 =cut
 
 use strict;
+use warnings;
 use C4::Branch; # GetBranches get_branchinfos_of
 use CGI;
 use List::MoreUtils qw/uniq/;
@@ -39,6 +40,7 @@ use C4::Koha;
 use C4::Circulation;
 use C4::Dates qw/format_date/;
 use C4::Members;
+use C4::Search;                # enabled_staff_search_views
 
 my $dbh = C4::Context->dbh;
 my $sth;
@@ -335,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} );
         } 
         }