From 9fc535d0064b5bfa000e3f4e3354338dc945de46 Mon Sep 17 00:00:00 2001 From: Thibaud Guillot Date: Wed, 4 Jan 2023 10:32:11 +0000 Subject: [PATCH] Bug 31550: (follow-up) fix bareword issue Signed-off-by: David Nind --- C4/ILSDI/Services.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/ILSDI/Services.pm b/C4/ILSDI/Services.pm index 06c23c26fc..1e42db7bda 100644 --- a/C4/ILSDI/Services.pm +++ b/C4/ILSDI/Services.pm @@ -260,7 +260,7 @@ sub GetRecords { if ( $item->$_ ) { my $authorised_value = Koha::AuthorisedValues->find_by_koha_field( { kohafield => 'items.' . $_, authorised_value => $item->$_ } ); if ($authorised_value) { - $item{ $_ . _description } = $authorised_value->opac_description; + $item{ $_ . '_description' } = $authorised_value->opac_description; } } } -- 2.30.2