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

(-)a/C4/XSLT.pm (-2 / +1 lines)
Lines 461-467 sub buildKohaHoldingsNamespace { Link Here
461
    my $shelflocations =
461
    my $shelflocations =
462
      { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => 'HLD', kohafield => 'holdings.location' } ) };
462
      { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => 'HLD', kohafield => 'holdings.location' } ) };
463
463
464
    my %branches = map { $_->branchcode => $_->branchname } Koha::Libraries->search({}, { order_by => 'branchname' });
464
    my %branches = map { $_->branchcode => $_->branchname } Koha::Libraries->search({}, { order_by => 'branchname' })->as_list();
465
465
466
    my $location = "";
466
    my $location = "";
467
    my $ccode = "";
467
    my $ccode = "";
468
- 

Return to bug 20447