View | Details | Raw Unified | Return to bug 28554
Collapse All | Expand All

(-)a/catalogue/itemsearch.pl (-2 / +1 lines)
Lines 262-268 if (scalar keys %params > 0) { Link Here
262
262
263
my @branches = map { value => $_->branchcode, label => $_->branchname }, Koha::Libraries->search( {}, { order_by => 'branchname' } );
263
my @branches = map { value => $_->branchcode, label => $_->branchname }, Koha::Libraries->search( {}, { order_by => 'branchname' } );
264
my @itemtypes;
264
my @itemtypes;
265
foreach my $itemtype ( Koha::ItemTypes->search ) {
265
foreach my $itemtype ( Koha::ItemTypes->search_with_localization ) {
266
    push @itemtypes, {
266
    push @itemtypes, {
267
        value => $itemtype->itemtype,
267
        value => $itemtype->itemtype,
268
        label => $itemtype->translated_description,
268
        label => $itemtype->translated_description,
269
- 

Return to bug 28554