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

(-)a/ill/ill-requests.pl (-1 / +1 lines)
Lines 443-448 if ( $backends_available ) { Link Here
443
    } elsif ( $op eq "batch_create" ) {
443
    } elsif ( $op eq "batch_create" ) {
444
        # Do not remove, it prevents us falling through to the 'else'
444
        # Do not remove, it prevents us falling through to the 'else'
445
    } else {
445
    } else {
446
        $op =~ s/^cud-//;
446
        my $request = Koha::Illrequests->find($params->{illrequest_id});
447
        my $request = Koha::Illrequests->find($params->{illrequest_id});
447
        my $backend_result = $request->custom_capability($op, $params);
448
        my $backend_result = $request->custom_capability($op, $params);
448
        $template->param(
449
        $template->param(
449
- 

Return to bug 36245