Lines 1096-1102
if (C4::Context->preference("OPACShelfBrowser")) {
Link Here
|
1096 |
); |
1096 |
); |
1097 |
|
1097 |
|
1098 |
# in which tab shelf browser should open ? |
1098 |
# in which tab shelf browser should open ? |
1099 |
if (grep { $starting_itemnumber == $_->itemnumber } @itemloop) { |
1099 |
if (grep { $starting_itemnumber == $_->{itemnumber} } @itemloop) { |
1100 |
$template->param(shelfbrowser_tab => 'holdings'); |
1100 |
$template->param(shelfbrowser_tab => 'holdings'); |
1101 |
} else { |
1101 |
} else { |
1102 |
$template->param(shelfbrowser_tab => 'otherholdings'); |
1102 |
$template->param(shelfbrowser_tab => 'otherholdings'); |
1103 |
- |
|
|