@@ -, +, @@ entry --- Koha/Plugins.pm | 1 + Koha/Plugins/Handler.pm | 1 + 2 files changed, 2 insertions(+) --- a/Koha/Plugins.pm +++ a/Koha/Plugins.pm @@ -27,6 +27,7 @@ use C4::Output; BEGIN { push @INC, C4::Context->config("pluginsdir"); + pop @INC if $INC[-1] eq '.'; } =head1 NAME --- a/Koha/Plugins/Handler.pm +++ a/Koha/Plugins/Handler.pm @@ -27,6 +27,7 @@ use C4::Context; BEGIN { push @INC, C4::Context->config("pluginsdir"); + pop @INC if $INC[-1] eq '.' ; } =head1 NAME --