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

(-)a/catalogue/detail.pl (-2 / +4 lines)
Lines 450-456 if ( C4::Context->preference("virtualshelves") ) { Link Here
450
    my $shelves = Koha::Virtualshelves->search(
450
    my $shelves = Koha::Virtualshelves->search(
451
        {
451
        {
452
            biblionumber => $biblionumber,
452
            biblionumber => $biblionumber,
453
            public       => 1,
453
            '-or'        => {
454
                public => 1,
455
                owner  => $patron->borrowernumber
456
            }
454
        },
457
        },
455
        {
458
        {
456
            join => 'virtualshelfcontents',
459
            join => 'virtualshelfcontents',
457
- 

Return to bug 39238