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

(-)a/svc/checkouts (-2 / +1 lines)
Lines 216-224 while ( my $c = $sth->fetchrow_hashref() ) { Link Here
216
    }
216
    }
217
    my @subtitles = split(/ \| /, $c->{'subtitle'} // '' );
217
    my @subtitles = split(/ \| /, $c->{'subtitle'} // '' );
218
218
219
    my $item = Koha::Items->find( $c->{itemnumber} );
220
    my $recalled = 0;
219
    my $recalled = 0;
221
    if ( C4::Context->preference('UseRecalls') ) {
220
    if ( C4::Context->preference('UseRecalls') ) {
221
        my $item = Koha::Items->find( $c->{itemnumber} );
222
        my $recall = undef;
222
        my $recall = undef;
223
        $recall = $item->check_recalls if $item->can_be_waiting_recall;
223
        $recall = $item->check_recalls if $item->can_be_waiting_recall;
224
        if ( defined $recall ) {
224
        if ( defined $recall ) {
225
- 

Return to bug 33944