@@ -, +, @@ description --- catalogue/itemsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/catalogue/itemsearch.pl +++ a/catalogue/itemsearch.pl @@ -262,7 +262,7 @@ if (scalar keys %params > 0) { my @branches = map { value => $_->branchcode, label => $_->branchname }, Koha::Libraries->search( {}, { order_by => 'branchname' } ); my @itemtypes; -foreach my $itemtype ( Koha::ItemTypes->search ) { +foreach my $itemtype ( Koha::ItemTypes->search_with_localization ) { push @itemtypes, { value => $itemtype->itemtype, label => $itemtype->translated_description, --