@@ -, +, @@ --- Koha/Illrequest.pm | 1 + ill/ill-requests.pl | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) --- a/Koha/Illrequest.pm +++ a/Koha/Illrequest.pm @@ -2055,6 +2055,7 @@ sub get_op_param_deprecation { $op = $params->{op} // $params->{method} // 'illlist'; $op = 'cud-create' if $op eq 'create'; $op = 'cud-edit_action' if $op eq 'edit_action'; + $op = 'cud-generic_confirm' if $op eq 'generic_confirm'; $op = 'cud-cancel' if $op eq 'cancel'; $op = 'cud-delete' if $op eq 'delete'; } --- a/ill/ill-requests.pl +++ a/ill/ill-requests.pl @@ -307,7 +307,8 @@ if ( $backends_available ) { # handle special commit rules & update type handle_commit_maybe($backend_result, $request); - } elsif ( $op eq 'generic_confirm' ) { + } elsif ( $op eq 'cud-generic_confirm' ) { + $op =~ s/^cud-//; my $backend_result; my $request; try { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -357,7 +357,7 @@ - + --