@@ -, +, @@ - Make sure you have a couple of books with a value for shelving location (952$c) - Check the books out - Check the books in - Verify nothing is displayed in the "Shelving location" column - Apply this patch - Check the books out and in again - Verify the shelving location is now being displayed --- circ/returns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -569,7 +569,7 @@ foreach ( sort { $a <=> $b } keys %returneditems ) { $ri{homebranch} = $item->homebranch; $ri{holdingbranch} = $item->holdingbranch; - $ri{location} = $biblio->{'location'}; + $ri{location} = $item->location; my $shelfcode = $ri{'location'}; $ri{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) ); --