From 9c2d83d92e862f4df95e4b1bbf58c474a9d7ba70 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 3 Sep 2020 14:11:46 +0200 Subject: [PATCH] Bug 23682: Fix use Koha::Plugins::Handler statements --- acqui/edifactmsgs.pl | 1 - misc/cronjobs/edi_cron.pl | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/edifactmsgs.pl b/acqui/edifactmsgs.pl index 5aa677072a..1f303f99bf 100755 --- a/acqui/edifactmsgs.pl +++ b/acqui/edifactmsgs.pl @@ -25,7 +25,6 @@ use C4::Koha; use C4::Output; use Koha::Database; use Koha::EDI qw(process_invoice); -use Koha::Plugins::Handler; my $q = CGI->new; my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user( diff --git a/misc/cronjobs/edi_cron.pl b/misc/cronjobs/edi_cron.pl index 2a3b08f13b..ff6ef95bcc 100755 --- a/misc/cronjobs/edi_cron.pl +++ b/misc/cronjobs/edi_cron.pl @@ -35,6 +35,7 @@ use Log::Log4perl qw(:easy); use Koha::Database; use Koha::EDI qw( process_quote process_invoice process_ordrsp); use Koha::Edifact::Transport; +use Koha::Plugins::Handler; use Fcntl qw( :DEFAULT :flock :seek ); my $logdir = C4::Context->config('logdir'); -- 2.20.1