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

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

Return to bug 28554