22 Sep
2025
22 Sep
'25
11 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40680 --- Comment #39 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 186655 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=186655&action=edit Bug 40680: Move EXPORT_OK right after Modern::Perl So it is done before the other use statements. Also uniformize the pattern, must now be: ``` use Modern::Perl; use base 'Exporter'; BEGIN { our @EXPORT_OK = qw(subroutine list); } ``` -- You are receiving this mail because: You are watching all bug changes.