@@ -, +, @@ --- C4/Circulation.pm | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2610,6 +2610,8 @@ sub AddRenewal { # Log the renewal UpdateStats( $branch, 'renew', $charge, '', $itemnumber, $item->{itype}, $borrowernumber, undef, $item->{'ccode'}); + logaction("CIRCULATION", "RENEW", $borrowernumber, $item->{'itemnumber'}) + if C4::Context->preference("IssueLog"); return $datedue; } --