View | Details | Raw Unified | Return to bug 22049
Collapse All | Expand All

(-)a/C4/Circulation.pm (-1 / +2 lines)
Lines 2101-2107 C<$privacy> contains the privacy parameter. If the patron has set privacy to 2, Link Here
2101
the old_issue is immediately anonymised
2101
the old_issue is immediately anonymised
2102
2102
2103
Ideally, this function would be internal to C<C4::Circulation>,
2103
Ideally, this function would be internal to C<C4::Circulation>,
2104
not exported, but it is currently used in misc/cronjobs/longoverdue.pl.
2104
not exported, but it is currently used in misc/cronjobs/longoverdue.pl
2105
and offline_circ/process_koc.pl.
2105
2106
2106
=cut
2107
=cut
2107
2108
(-)a/offline_circ/process_koc.pl (-2 lines)
Lines 335-341 sub kocReturnItem { Link Here
335
        C4::Circulation::MarkIssueReturned(
335
        C4::Circulation::MarkIssueReturned(
336
            $borrowernumber,
336
            $borrowernumber,
337
            $item->itemnumber,
337
            $item->itemnumber,
338
            undef,
339
            $circ->{'date'},
338
            $circ->{'date'},
340
            $patron->privacy
339
            $patron->privacy
341
        );
340
        );
342
- 

Return to bug 22049