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

(-)a/catalogue/detail.pl (-3 lines)
Lines 253-260 foreach my $item (@items) { Link Here
253
253
254
    #get shelf location and collection code description if they are authorised value.
254
    #get shelf location and collection code description if they are authorised value.
255
    # same thing for copy number
255
    # same thing for copy number
256
    my $shelfcode = $item->{'location'};
257
    $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
258
    my $ccode = $item->{'ccode'};
256
    my $ccode = $item->{'ccode'};
259
    $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
257
    $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
260
    my $copynumber = $item->{'copynumber'};
258
    my $copynumber = $item->{'copynumber'};
261
- 

Return to bug 18355