From 80c7ec6813a6d53fd7a99f3270b311b3b97b1cf8 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomas Cohen Arazi Signed-off-by: Joonas Kylmälä --- 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 03ca66235a..f6bf6bcc14 100644 --- a/C4/ILSDI/Services.pm +++ b/C4/ILSDI/Services.pm @@ -35,6 +35,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; @@ -944,8 +945,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.30.2