|
Lines 424-429
if ($op=~/else/) {
Link Here
|
| 424 |
if $search_params->{$f} eq '__ANY__' |
424 |
if $search_params->{$f} eq '__ANY__' |
| 425 |
|| $search_params->{$f} eq ''; |
425 |
|| $search_params->{$f} eq ''; |
| 426 |
} |
426 |
} |
|
|
427 |
for my $bi (qw (title author isbn publishercode copyrightdate collectiontitle)) { |
| 428 |
$search_params->{$bi} = { 'LIKE' => "%" . $search_params->{$bi} . "%" } if $search_params->{$bi}; |
| 429 |
} |
| 427 |
|
430 |
|
| 428 |
$search_params->{archived} = 0 if !$filter_archived; |
431 |
$search_params->{archived} = 0 if !$filter_archived; |
| 429 |
my @suggestions = Koha::Suggestions->search_limited($search_params)->as_list; |
432 |
my @suggestions = Koha::Suggestions->search_limited($search_params)->as_list; |
| 430 |
- |
|
|