From a24596709a6216cc2743c24afc44e106ec95178d Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Mon, 5 Feb 2024 12:31:21 -0100 Subject: [PATCH] Bug 34478: ILL INTRA: deprecation check Signed-off-by: Jonathan Druart --- ill/ill-requests.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ill/ill-requests.pl b/ill/ill-requests.pl index 13121167c3..4d32d5e38a 100755 --- a/ill/ill-requests.pl +++ b/ill/ill-requests.pl @@ -27,6 +27,7 @@ use Koha::Notice::Templates; use Koha::AuthorisedValues; use Koha::Illcomment; use Koha::Illrequests; +use Koha::Illrequest; use Koha::Illbatches; use Koha::Illrequest::Workflow::Availability; use Koha::Illrequest::Workflow::TypeDisclaimer; @@ -51,6 +52,8 @@ unless ( C4::Context->preference('ILLModule') ) { exit; } +Koha::Illrequest->check_url_param_deprecation($params); + my $op = $params->{op} // $params->{method} // 'illlist'; my ( $template, $patronnumber, $cookie ) = get_template_and_user( { -- 2.39.5