From 241b6a1644fb105bea39b978a3501bec299fa4fc Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 7 Jun 2021 14:29:23 +0100 Subject: [PATCH] Bug 27064: (QA follow-up) Remove superflous error message The reserve found error message should not be included in the errmsgloop as it's handled as a question in the previous step. --- circ/branchtransfers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/branchtransfers.pl b/circ/branchtransfers.pl index bb508f77a0..9ac2afdf50 100755 --- a/circ/branchtransfers.pl +++ b/circ/branchtransfers.pl @@ -214,7 +214,7 @@ foreach my $code ( keys %$messages ) { } } $err{errdesteqholding} = ( $code eq 'DestinationEqualsHolding' ); - push( @errmsgloop, \%err ); + push( @errmsgloop, \%err ) unless ( $code eq 'ResFound' ); } } -- 2.20.1