@@ -, +, @@ --- tools/batch_extend_due_dates.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/batch_extend_due_dates.pl +++ a/tools/batch_extend_due_dates.pl @@ -147,7 +147,7 @@ elsif ( $op eq 'modify' ) { $checkout->date_due($new_due_date)->store; # Update items.onloan - $checkout->item->onloan($new_due_date)->store; + $checkout->item->onloan($new_due_date)->store({ log_action => 0 }); logaction("CIRCULATION", "RENEWAL", $checkout->borrowernumber, $checkout->itemnumber) if $RenewalLog; } --