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

(-)a/circ/circulation.pl (-2 / +1 lines)
Lines 670-676 if ( $patron ) { Link Here
670
    $template->param( patron_messages => $patron_messages );
670
    $template->param( patron_messages => $patron_messages );
671
671
672
    if ( C4::Context->preference("WaitingNotifyAtCheckout") ) {
672
    if ( C4::Context->preference("WaitingNotifyAtCheckout") ) {
673
        my $waiting_holds = $patron->holds->search( { found => 'W', branchcode => $branch } );
673
        my $waiting_holds = $patron->holds->search( { found => 'W', branchcode => $branch } )->as_list;
674
        $template->param( waiting_holds => $waiting_holds );
674
        $template->param( waiting_holds => $waiting_holds );
675
    }
675
    }
676
}
676
}
677
- 

Return to bug 37199