Lines 75-81
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
Link Here
|
75 |
} |
75 |
} |
76 |
); |
76 |
); |
77 |
|
77 |
|
78 |
my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') ); |
78 |
my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' ); |
79 |
|
79 |
|
80 |
my $show_priority; |
80 |
my $show_priority; |
81 |
for ( C4::Context->preference("OPACShowHoldQueueDetails") ) { |
81 |
for ( C4::Context->preference("OPACShowHoldQueueDetails") ) { |
Lines 364-370
$template->param(
Link Here
|
364 |
# back to the opac-results page |
364 |
# back to the opac-results page |
365 |
my $search_query = $query->param('has-search-query'); |
365 |
my $search_query = $query->param('has-search-query'); |
366 |
|
366 |
|
367 |
if ($search_query ne '') { |
367 |
if ($search_query) { |
368 |
|
368 |
|
369 |
print $query->redirect( |
369 |
print $query->redirect( |
370 |
-uri => "/cgi-bin/koha/opac-search.pl?$search_query", |
370 |
-uri => "/cgi-bin/koha/opac-search.pl?$search_query", |
371 |
- |
|
|