View | Details | Raw Unified | Return to bug 14487
Collapse All | Expand All

(-)a/circ/returns.pl (-2 / +1 lines)
Lines 620-626 $template->param( Link Here
620
$itemnumber = GetItemnumberFromBarcode( $query->param('barcode') );
620
$itemnumber = GetItemnumberFromBarcode( $query->param('barcode') );
621
if ( $itemnumber ) {
621
if ( $itemnumber ) {
622
   my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
622
   my ( $holdingBranch, $collectionBranch ) = GetCollectionItemBranches( $itemnumber );
623
    if ( ! ( $holdingBranch eq $collectionBranch ) ) {
623
    if ( ! ( ($holdingBranch // '') eq ( $collectionBranch // '' ) ) ) {
624
        $template->param(
624
        $template->param(
625
          collectionItemNeedsTransferred => 1,
625
          collectionItemNeedsTransferred => 1,
626
          collectionBranch => GetBranchName($collectionBranch),
626
          collectionBranch => GetBranchName($collectionBranch),
627
- 

Return to bug 14487