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

(-)a/opac/opac-ISBDdetail.pl (-2 / +5 lines)
Lines 76-83 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
76
    }
76
    }
77
);
77
);
78
78
79
80
my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => [ 'metadata', 'items' ] } );
79
my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => [ 'metadata', 'items' ] } );
80
unless ( $biblio ) {
81
    print $query->redirect("/cgi-bin/koha/errors/404.pl");
82
    exit;
83
}
84
81
my $patron = Koha::Patrons->find($loggedinuser);
85
my $patron = Koha::Patrons->find($loggedinuser);
82
86
83
my $opachiddenitems_rules;
87
my $opachiddenitems_rules;
84
- 

Return to bug 23248