@@ -, +, @@ --- opac/opac-shelves.pl | 3 ++- virtualshelves/shelves.pl | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) --- a/opac/opac-shelves.pl +++ a/opac/opac-shelves.pl @@ -273,8 +273,9 @@ if ( $op eq 'view' ) { if ( $query->param('rss') ) { $this_item->{title} = $content->biblionumber->title; $this_item->{author} = $content->biblionumber->author; - $this_item->{biblionumber} = $biblionumber; } + + $this_item->{biblionumber} = $biblionumber; push @items, $this_item; } --- a/virtualshelves/shelves.pl +++ a/virtualshelves/shelves.pl @@ -233,6 +233,7 @@ if ( $op eq 'view' ) { # Getting items infos for location display my @items_infos = &GetItemsLocationInfo( $biblionumber ); $this_item->{'ITEM_RESULTS'} = \@items_infos; + $this_item->{biblionumber} = $biblionumber; push @items, $this_item; } --