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

(-)a/circ/returns.pl (-2 / +1 lines)
Lines 284-290 if ($barcode) { Link Here
284
    my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => '', kohafield =>'items.materials', authorised_value => $materials });
284
    my $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => '', kohafield =>'items.materials', authorised_value => $materials });
285
    $materials = $descriptions->{lib} // '';
285
    $materials = $descriptions->{lib} // '';
286
286
287
    my $issue = GetItemIssue($itemnumber);
287
    my $issue = Koha::Checkouts->find( { itemnumber => $itemnumber } );
288
288
289
    $template->param(
289
    $template->param(
290
        title            => $biblio->{'title'},
290
        title            => $biblio->{'title'},
291
- 

Return to bug 14224