From 9e4b4157e6a2b05886f2f0435346b2afdc0c5705 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 9 Nov 2022 21:40:55 +0000 Subject: [PATCH] Bug 31212: (follow-up) Fix datelastseen when returning item --- circ/returns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/returns.pl b/circ/returns.pl index 2c2bea8aa80..31a18276d74 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -433,7 +433,7 @@ if ($barcode) { $verify_item->itemlost(0); # Update last_seen - $verify_item->datelastseen( dt_from_string()->ymd() ); + $verify_item->datelastseen( dt_from_string() ); # Update last_borrowed if actual checkin $verify_item->datelastborrowed( dt_from_string()->ymd() ) if $issue; -- 2.30.2