Bugzilla – Attachment 187127 Details for
Bug 40680
Many warnings on Perl 5.40 due to importing methods from not yet defined packages
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40680: Fix admin/matching-rules.pl
Bug-40680-Fix-adminmatching-rulespl.patch (text/plain), 1.01 KB, created by
Victor Grousset/tuxayo
on 2025-09-30 19:42:24 UTC
(
hide
)
Description:
Bug 40680: Fix admin/matching-rules.pl
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2025-09-30 19:42:24 UTC
Size:
1.01 KB
patch
obsolete
>From 21385d22303782ea90970cdeb215d3d474e5c13c Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >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 2eb37ba626..a2c1348eff 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.51.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 40680
:
186031
|
186032
|
186033
|
186034
|
186035
|
186036
|
186037
|
186038
|
186039
|
186040
|
186041
|
186654
|
186655
|
186656
|
186657
|
186658
|
186659
|
186660
|
186661
|
186662
|
186663
|
186664
|
187122
|
187123
|
187124
|
187125
|
187126
|
187127
|
187128
|
187129
|
187130
|
187131
|
187132
|
187385
|
187609
|
187610
|
187611
|
187612
|
187613
|
187614
|
187615
|
187616
|
187617
|
187618
|
187619