From cfa1b83b2414d414861d8fef38f8b98c807aac18 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Sep 2025 12:32:06 +0200 Subject: [PATCH] Bug 40680: Fix admin/matching-rules.pl Attempt to call undefined import method with arguments (valid_normalization_routines) via package C4::Matcher (Perhaps you forgot to load the package?) at admin/matching-rules.pl line 27. --- admin/matching-rules.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/matching-rules.pl b/admin/matching-rules.pl index 2eb37ba6264..a2c1348effb 100755 --- a/admin/matching-rules.pl +++ b/admin/matching-rules.pl @@ -23,8 +23,8 @@ use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth qw( get_template_and_user ); use C4::Context; -use C4::Output qw( output_html_with_http_headers ); -use C4::Matcher qw/valid_normalization_routines/; +use C4::Output qw( output_html_with_http_headers ); +use C4::Matcher; our $input = CGI->new; my $op = $input->param('op') || ''; -- 2.34.1