From 7003b62e3ef708b4716c80e86f6a409b720d8345 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 20 Jun 2025 10:32:01 +0000 Subject: [PATCH] Bug 40171: Remove extraneous join() Signed-off-by: David Nind --- ill/ill-requests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ill/ill-requests.pl b/ill/ill-requests.pl index 41112b8bc9..8bb8c255c6 100755 --- a/ill/ill-requests.pl +++ b/ill/ill-requests.pl @@ -478,7 +478,7 @@ if ($backends_available) { $append .= '&tran_success=' . join( ',', @{ $ret->{result}->{success} } ); } if ( $ret->{result} && scalar @{ $ret->{result}->{fail} } > 0 ) { - $append .= '&tran_fail=' . join( ',', @{ $ret->{result}->{fail} } . join(',') ); + $append .= '&tran_fail=' . join( ',', @{ $ret->{result}->{fail} } ); } # Redirect to view the whole request -- 2.39.5