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

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

Return to bug 23129