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

(-)a/catalogue/MARCdetail.pl (-2 / +2 lines)
Lines 90-96 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
90
my $record = GetMarcBiblio({
90
my $record = GetMarcBiblio({
91
    biblionumber => $biblionumber,
91
    biblionumber => $biblionumber,
92
    embed_items  => 1 });
92
    embed_items  => 1 });
93
$template->param( ocoins => GetCOinSBiblio($record) );
94
93
95
if ( not defined $record ) {
94
if ( not defined $record ) {
96
    # biblionumber invalid -> report and exit
95
    # biblionumber invalid -> report and exit
Lines 101-106 if ( not defined $record ) { Link Here
101
    exit;
100
    exit;
102
}
101
}
103
102
103
$template->param( ocoins => GetCOinSBiblio($record) );
104
104
my $biblio_object = Koha::Biblios->find( $biblionumber ); # FIXME Should replace $biblio
105
my $biblio_object = Koha::Biblios->find( $biblionumber ); # FIXME Should replace $biblio
105
my $tagslib = &GetMarcStructure(1,$frameworkcode);
106
my $tagslib = &GetMarcStructure(1,$frameworkcode);
106
my $biblio = GetBiblioData($biblionumber);
107
my $biblio = GetBiblioData($biblionumber);
107
- 

Return to bug 21248