@@ -, +, @@ returns.pl line 623 of : (a) Use of uninitialized value $holdingBranch (b) Use of uninitialized value $collectionBranch Additionally, this only corrects the line 623 ones. --- circ/returns.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -620,6 +620,8 @@ $template->param( $itemnumber = GetItemnumberFromBarcode( $query->param('barcode') ); if ( $itemnumber ) { my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber ); + $holdingBranch //= ''; + $collectionBranch //= ''; if ( ! ( $holdingBranch eq $collectionBranch ) ) { $template->param( collectionItemNeedsTransferred => 1, --