Bug 8006 - Loading offline circulation does not anonymize
Simple, one line fix. Added the privacy parameter to the list of parameters passed to C4::Circulation::MarkIssueReturned. Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
c3f16aa97d
commit
c3bcfc4f82
1 changed files with 2 additions and 1 deletions
|
@ -329,7 +329,8 @@ sub kocReturnItem {
|
|||
$borrowernumber,
|
||||
$item->{'itemnumber'},
|
||||
undef,
|
||||
$circ->{'date'}
|
||||
$circ->{'date'},
|
||||
$borrower->{'privacy'}
|
||||
);
|
||||
|
||||
ModItem({ onloan => undef }, $item->{'biblionumber'}, $item->{'itemnumber'});
|
||||
|
|
Loading…
Reference in a new issue