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

(-)a/basket/basket.pl (+3 lines)
Lines 90-95 foreach my $biblionumber ( @bibs ) { Link Here
90
    $num++;
90
    $num++;
91
    $dat->{biblionumber} = $biblionumber;
91
    $dat->{biblionumber} = $biblionumber;
92
    $dat->{ITEM_RESULTS}   = $biblio->items->search_ordered;
92
    $dat->{ITEM_RESULTS}   = $biblio->items->search_ordered;
93
    if ($dat->{ITEM_RESULTS}->count == 0) {
94
        $dat->{ITEM_RESULTS} = $biblio->host_items->search_ordered;
95
    }
93
    $dat->{MARCNOTES}      = $marcnotesarray;
96
    $dat->{MARCNOTES}      = $marcnotesarray;
94
    $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
97
    $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
95
    $dat->{MARCAUTHORS}    = $marcauthorsarray;
98
    $dat->{MARCAUTHORS}    = $marcauthorsarray;
(-)a/virtualshelves/shelves.pl (-1 / +3 lines)
Lines 323-328 if ( $op eq 'view' ) { Link Here
323
323
324
                # Getting items infos for location display
324
                # Getting items infos for location display
325
                my $items = $biblio->items;
325
                my $items = $biblio->items;
326
                if ($items->count == 0) {
327
                    $items = $biblio->host_items;
328
                }
326
                $this_item->{'ITEM_RESULTS'} = $items;
329
                $this_item->{'ITEM_RESULTS'} = $items;
327
                $this_item->{biblionumber} = $biblionumber;
330
                $this_item->{biblionumber} = $biblionumber;
328
                push @items, $this_item;
331
                push @items, $this_item;
329
- 

Return to bug 24192