https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40680
--- Comment #135 from Martin Renvoize (ashimema) <[email protected]> --- Created attachment 189876 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=189876&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); } ``` Rebased-by: Victor Grousset/tuxayo <[email protected]> Bug38936 exported redirect_if_opac_suppressed Signed-off-by: Victor Grousset/tuxayo <[email protected]> Signed-off-by: Martin Renvoize <[email protected]> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
