@@ -, +, @@ --- C4/Accounts.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/C4/Accounts.pm +++ a/C4/Accounts.pm @@ -320,7 +320,7 @@ sub chargelostitem{ warn " $issues->{'borrowernumber'} / $itemnumber "; C4::Circulation::MarkIssueReturned($issues->{borrowernumber},$itemnumber); # Shouldn't MarkIssueReturned do this? - ModItem({ onloan => undef }, undef, $itemnumber); + C4::Items::ModItem({ onloan => undef }, undef, $itemnumber); } $sth->finish; } --