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

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

Return to bug 14224