View | Details | Raw Unified | Return to bug 5801
Collapse All | Expand All

(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 490-496 foreach my $biblioNum (@biblionumbers) { Link Here
490
        # If there is no loan, return and transfer, we show a checkbox.
490
        # If there is no loan, return and transfer, we show a checkbox.
491
        $itemLoopIter->{notforloan} = $itemLoopIter->{notforloan} || 0;
491
        $itemLoopIter->{notforloan} = $itemLoopIter->{notforloan} || 0;
492
492
493
        my $branch = C4::Circulation::_GetCircControlBranch($itemLoopIter, $borr);
493
        my $branch = ( C4::Context->preference('ReservesControlBranch') eq 'ItemHomeLibrary' ) ? $itemInfo->{'homebranch'} : $borr->{'branchcode'};
494
494
495
        my $branchitemrule = GetBranchItemRule( $branch, $itemInfo->{'itype'} );
495
        my $branchitemrule = GetBranchItemRule( $branch, $itemInfo->{'itype'} );
496
        my $policy_holdallowed = 1;
496
        my $policy_holdallowed = 1;
497
- 

Return to bug 5801