From 1e2426f60273e6b5d1b03ca5dd8480a0f20e14bf Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 28 Feb 2025 08:29:40 +0000 Subject: [PATCH] Bug 39213: Force scalar on query param barcode Content-Type: text/plain; charset=utf-8 Test plan: Read the patch. Signed-off-by: Marcel de Rooy --- cataloguing/moveitem.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cataloguing/moveitem.pl b/cataloguing/moveitem.pl index 66a4489415..e7cb70c5cd 100755 --- a/cataloguing/moveitem.pl +++ b/cataloguing/moveitem.pl @@ -46,7 +46,7 @@ my $op = $query->param('op') || q{}; my $biblionumber = $query->param('biblionumber'); # The barcode of the item to move -my $barcode = barcodedecode( $query->param('barcode') ); +my $barcode = barcodedecode( scalar $query->param('barcode') ); my $biblio = Koha::Biblios->find($biblionumber); $template->param( biblio => $biblio ); -- 2.39.5