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

(-)a/opac/opac-shelves.pl (-1 / +2 lines)
Lines 273-280 if ( $op eq 'view' ) { Link Here
273
                if ( $query->param('rss') ) {
273
                if ( $query->param('rss') ) {
274
                    $this_item->{title} = $content->biblionumber->title;
274
                    $this_item->{title} = $content->biblionumber->title;
275
                    $this_item->{author} = $content->biblionumber->author;
275
                    $this_item->{author} = $content->biblionumber->author;
276
                    $this_item->{biblionumber} = $biblionumber;
277
                }
276
                }
277
278
                $this_item->{biblionumber} = $biblionumber;
278
                push @items, $this_item;
279
                push @items, $this_item;
279
            }
280
            }
280
281
(-)a/virtualshelves/shelves.pl (-1 / +1 lines)
Lines 233-238 if ( $op eq 'view' ) { Link Here
233
                # Getting items infos for location display
233
                # Getting items infos for location display
234
                my @items_infos = &GetItemsLocationInfo( $biblionumber );
234
                my @items_infos = &GetItemsLocationInfo( $biblionumber );
235
                $this_item->{'ITEM_RESULTS'} = \@items_infos;
235
                $this_item->{'ITEM_RESULTS'} = \@items_infos;
236
                $this_item->{biblionumber} = $biblionumber;
236
                push @items, $this_item;
237
                push @items, $this_item;
237
            }
238
            }
238
239
239
- 

Return to bug 14544