From 9493b535d29cd336cb0ced16df4a3f039a833c15 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 18 Jul 2022 12:47:49 -0300 Subject: [PATCH] Bug 31177: Fix misplaced import in C4::ILSDI::Services Signed-off-by: Tomas Cohen Arazi --- C4/ILSDI/Services.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm index 0f68b4c5d7..d3feee2d0f 100644 --- a/C4/ILSDI/Services.pm +++ b/C4/ILSDI/Services.pm @@ -36,6 +36,7 @@ use C4::AuthoritiesMarc qw( GetAuthorityXML ); use Koha::Biblios; use Koha::Checkouts; +use Koha::I18N qw(__); use Koha::Items; use Koha::Libraries; use Koha::Patrons; @@ -961,8 +962,6 @@ sub _availability { my ($itemnumber) = @_; my $item = Koha::Items->find($itemnumber); - use Koha::I18N; - unless ( $item ) { return ( undef, __('unknown'), __('Error: could not retrieve availability for this ID'), undef ); } -- 2.34.1