@@ -, +, @@ one defined 1) Create a hold request to a pickup library where the item currently is not 2) Add transfer to the pickup library using branchtransfers.pl and notice without this patch we get and empty message box but with this patch we don't get it. --- circ/branchtransfers.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/circ/branchtransfers.pl +++ a/circ/branchtransfers.pl @@ -213,8 +213,10 @@ foreach my $code ( keys %$messages ) { $err{patron} = $patron; } } - $err{errdesteqholding} = ( $code eq 'DestinationEqualsHolding' ); - push( @errmsgloop, \%err ); + elsif ( $code eq 'DestinationEqualsHolding' ) { + $err{errdesteqholding} = 1; + } + push( @errmsgloop, \%err ) if (keys %err); } } --