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

(-)a/C4/Items.pm (-2 / +1 lines)
Lines 563-569 sub ModItemTransfer { Link Here
563
        VALUES (?, ?, NOW(), ?)");
563
        VALUES (?, ?, NOW(), ?)");
564
    $sth->execute($itemnumber, $frombranch, $tobranch);
564
    $sth->execute($itemnumber, $frombranch, $tobranch);
565
565
566
    ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 });
566
    ModItem({ holdingbranch => $frombranch }, undef, $itemnumber, { log_action => 0 });
567
    ModDateLastSeen($itemnumber);
567
    ModDateLastSeen($itemnumber);
568
    return;
568
    return;
569
}
569
}
570
- 

Return to bug 23129