@@ -, +, @@ --- C4/ILSDI/Services.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/C4/ILSDI/Services.pm +++ a/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 ); } --