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

(-)a/circ/waitingreserves.pl (-2 / +1 lines)
Lines 116-122 while ( my $hold = $holds->next ) { Link Here
116
    
116
    
117
}
117
}
118
118
119
my $holds_with_cancellation_requests = Koha::Holds->waiting->filter_by_has_cancellation_requests;
119
my $holds_with_cancellation_requests = Koha::Holds->waiting->search({ ($all_branches ? () : ( branchcode => $default ) ) })->filter_by_has_cancellation_requests;
120
120
121
$template->param(cancel_result => \@cancel_result) if @cancel_result;
121
$template->param(cancel_result => \@cancel_result) if @cancel_result;
122
122
123
- 

Return to bug 35003