@@ -, +, @@ returns.pl line 623 of : (a) Use of uninitialized value $holdingBranch (b) Use of uninitialized value $collectionBranch --- circ/returns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -620,7 +620,7 @@ $template->param( $itemnumber = GetItemnumberFromBarcode( $query->param('barcode') ); if ( $itemnumber ) { my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber ); - if ( ! ( $holdingBranch eq $collectionBranch ) ) { + if ( ! ( ($holdingBranch // '') eq ( $collectionBranch // '' ) ) ) { $template->param( collectionItemNeedsTransferred => 1, collectionBranch => GetBranchName($collectionBranch), --