From 52534533966c4d25762b5c9ab53019c2f89da69f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 3 Aug 2021 14:46:56 +0200 Subject: [PATCH] Bug 17600: Add missing imports in authorities/ --- authorities/authorities.pl | 2 +- authorities/merge.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/authorities/authorities.pl b/authorities/authorities.pl index 11e60ef3eab..229dc276608 100755 --- a/authorities/authorities.pl +++ b/authorities/authorities.pl @@ -23,7 +23,7 @@ use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth qw( get_template_and_user ); use C4::Output qw( output_html_with_http_headers ); -use C4::AuthoritiesMarc qw( GetAuthority GetTagsLabels GetAuthMARCFromKohaField ); +use C4::AuthoritiesMarc qw( AddAuthority ModAuthority GetAuthority GetTagsLabels GetAuthMARCFromKohaField FindDuplicateAuthority ); use C4::ImportBatch qw( GetImportRecordMarc ); use C4::Context; use Date::Calc qw( Today ); diff --git a/authorities/merge.pl b/authorities/merge.pl index d9af163e793..0799c26b042 100755 --- a/authorities/merge.pl +++ b/authorities/merge.pl @@ -21,7 +21,7 @@ use Modern::Perl; use CGI qw ( -utf8 ); use C4::Output qw( output_html_with_http_headers ); use C4::Auth qw( get_template_and_user ); -use C4::AuthoritiesMarc qw( GetAuthority ModAuthority DelAuthority GetTagsLabels ); +use C4::AuthoritiesMarc qw( GetAuthority ModAuthority DelAuthority GetTagsLabels merge ); use C4::Biblio qw( TransformHtmlToMarc ); use Koha::Authority::MergeRequests; -- 2.20.1