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

(-)a/tools/batch_extend_due_dates.pl (-2 / +1 lines)
Lines 147-153 elsif ( $op eq 'modify' ) { Link Here
147
        $checkout->date_due($new_due_date)->store;
147
        $checkout->date_due($new_due_date)->store;
148
148
149
        # Update items.onloan
149
        # Update items.onloan
150
        $checkout->item->onloan($new_due_date)->store;
150
        $checkout->item->onloan($new_due_date)->store({ log_action => 0 });
151
151
152
        logaction("CIRCULATION", "RENEWAL", $checkout->borrowernumber, $checkout->itemnumber) if $RenewalLog;
152
        logaction("CIRCULATION", "RENEWAL", $checkout->borrowernumber, $checkout->itemnumber) if $RenewalLog;
153
    }
153
    }
154
- 

Return to bug 25995