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

(-)a/opac/opac-ISBDdetail.pl (-3 / +1 lines)
Lines 45-51 use C4::Auth; Link Here
45
use C4::Context;
45
use C4::Context;
46
use C4::Output;
46
use C4::Output;
47
use CGI qw ( -utf8 );
47
use CGI qw ( -utf8 );
48
use MARC::Record;
49
use C4::Biblio;
48
use C4::Biblio;
50
use C4::Items;
49
use C4::Items;
51
use C4::Reserves;
50
use C4::Reserves;
Lines 78-84 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
78
);
77
);
79
78
80
79
81
my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => [ 'biblio_metadatas' ] } );
80
my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => 'metadata' } );
82
my $patron = Koha::Patrons->find($loggedinuser);
81
my $patron = Koha::Patrons->find($loggedinuser);
83
82
84
my $opachiddenitems_rules;
83
my $opachiddenitems_rules;
85
- 

Return to bug 22696