Lines 542-548
for (my $i=0;$i<=@servers;$i++) {
Link Here
|
542 |
$template->param(stopwords_removed => "@$stopwords_removed") if $stopwords_removed; |
542 |
$template->param(stopwords_removed => "@$stopwords_removed") if $stopwords_removed; |
543 |
$template->param(results_per_page => $results_per_page); |
543 |
$template->param(results_per_page => $results_per_page); |
544 |
$template->param(SEARCH_RESULTS => \@newresults, |
544 |
$template->param(SEARCH_RESULTS => \@newresults, |
545 |
OPACItemsResultsDisplay => (C4::Context->preference("OPACItemsResultsDisplay") eq "itemdetails"?1:0), |
545 |
OPACItemsResultsDisplay => C4::Context->preference("OPACItemsResultsDisplay"), |
546 |
); |
546 |
); |
547 |
## Build the page numbers on the bottom of the page |
547 |
## Build the page numbers on the bottom of the page |
548 |
my @page_numbers; |
548 |
my @page_numbers; |
549 |
- |
|
|