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

(-)a/C4/Search.pm (-8 / +2 lines)
Lines 1870-1882 sub searchResults { Link Here
1870
    # get notforloan authorised value list (see $shelflocations  FIXME)
1870
    # get notforloan authorised value list (see $shelflocations  FIXME)
1871
    my $notforloan_authorised_value = GetAuthValCode('items.notforloan','');
1871
    my $notforloan_authorised_value = GetAuthValCode('items.notforloan','');
1872
1872
1873
    #Build itemtype hash
1873
    #Get itemtype hash
1874
    #find itemtype & itemtype image
1874
    my %itemtypes = %{ GetItemTypes() };
1875
    my %itemtypes;
1876
    my $itemtypes = GetItemTypes( style => 'array' );
1877
    for my $itemtype ( @$itemtypes ) {
1878
        $itemtypes{ $itemtype->{itemtype} } = $itemtype;
1879
    }
1880
1875
1881
    #search item field code
1876
    #search item field code
1882
    my ($itemtag, undef) = &GetMarcFromKohaField( "items.itemnumber", "" );
1877
    my ($itemtag, undef) = &GetMarcFromKohaField( "items.itemnumber", "" );
1883
- 

Return to bug 14100