From 2d3722b5a374cb86c5947376ef513f67cd746aee Mon Sep 17 00:00:00 2001 From: Ian Walls Date: Mon, 5 Apr 2010 17:00:02 +0000 Subject: [PATCH] Fixes bug 4369: Local use does not update datelastseen Signed-off-by: Galen Charlton --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index a052d13092..66c4080262 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -689,6 +689,7 @@ sub CanBookBeIssued { if ( $borrower->{'category_type'} eq 'X' && ( $item->{barcode} )) { # stats only borrower -- add entry to statistics table, and return issuingimpossible{STATS} = 1 . &UpdateStats(C4::Context->userenv->{'branch'},'localuse','','',$item->{'itemnumber'},$item->{'itemtype'},$borrower->{'borrowernumber'}); + ModDateLastSeen( $item->{'itemnumber'} ); return( { STATS => 1 }, {}); } if ( $borrower->{flags}->{GNA} ) { -- 2.39.2