From 97dae86516950b9f7c9131479c9a7d46a6de0253 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() --- 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 41112b8bc9e..8bb8c255c60 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