|
Lines 201-206
if ( $op eq "do_search" ) {
Link Here
|
| 201 |
} |
201 |
} |
| 202 |
} |
202 |
} |
| 203 |
|
203 |
|
|
|
204 |
if( $pending_deletion_authid && $results ) { |
| 205 |
$results = [ grep { $_->{authid} != $pending_deletion_authid } @$results ]; |
| 206 |
} |
| 207 |
|
| 204 |
$template->param( result => $results ) if $results; |
208 |
$template->param( result => $results ) if $results; |
| 205 |
|
209 |
|
| 206 |
my $max_result_window = $searcher->max_result_window; |
210 |
my $max_result_window = $searcher->max_result_window; |
|
Lines 241-247
my $servers = Koha::Z3950Servers->search(
Link Here
|
| 241 |
$template->param( |
245 |
$template->param( |
| 242 |
servers => $servers, |
246 |
servers => $servers, |
| 243 |
authority_types => $authority_types, |
247 |
authority_types => $authority_types, |
| 244 |
pending_deletion_authid => $pending_deletion_authid, |
|
|
| 245 |
op => $op, |
248 |
op => $op, |
| 246 |
); |
249 |
); |
| 247 |
|
250 |
|