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

(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 198-204 if ( $query->param('place_reserve') ) { Link Here
198
        my $itemNum   = shift(@selectedItems);
198
        my $itemNum   = shift(@selectedItems);
199
        my $branch    = shift(@selectedItems); # i.e., branch code, not name
199
        my $branch    = shift(@selectedItems); # i.e., branch code, not name
200
200
201
        my $singleBranchMode = $template->param('singleBranchMode');
201
        my $singleBranchMode = C4::Context->preference("singleBranchMode");
202
        if ($singleBranchMode || ! $OPACChooseBranch) { # single branch mode or disabled user choosing
202
        if ($singleBranchMode || ! $OPACChooseBranch) { # single branch mode or disabled user choosing
203
            $branch = $borr->{'branchcode'};
203
            $branch = $borr->{'branchcode'};
204
        }
204
        }
205
- 

Return to bug 7581