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