@@ -, +, @@ --- misc/export_borrowers.pl | 2 +- misc/load_yaml.pl | 2 +- misc/z3950_responder.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- a/misc/export_borrowers.pl +++ a/misc/export_borrowers.pl @@ -21,7 +21,7 @@ use Modern::Perl; use Text::CSV; -use Getopt::Long qw( GetOptions ); +use Getopt::Long qw( GetOptions :config no_ignore_case ); use Koha::Script; use C4::Context; --- a/misc/load_yaml.pl +++ a/misc/load_yaml.pl @@ -20,7 +20,7 @@ use Modern::Perl; use Koha::Script; -use Getopt::Long qw( GetOptions ); +use Getopt::Long qw( GetOptions :config no_ignore_case ); use C4::Context; use C4::Installer; --- a/misc/z3950_responder.pl +++ a/misc/z3950_responder.pl @@ -20,7 +20,7 @@ use Modern::Perl; use File::Basename qw( fileparse ); -use Getopt::Long qw( GetOptions ); +use Getopt::Long qw( GetOptions :config no_ignore_case ); use Pod::Usage qw( pod2usage ); use Koha::Config; --