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

(-)a/Koha/Patrons.pm (-2 / +1 lines)
Lines 214-220 sub anonymise_issue_history { Link Here
214
214
215
        my $anonymous_patron = C4::Context->preference('AnonymousPatron') || undef;
215
        my $anonymous_patron = C4::Context->preference('AnonymousPatron') || undef;
216
        $nb_rows += $old_issues_to_anonymise->update( { 'old_issues.borrowernumber' => $anonymous_patron } );
216
        $nb_rows += $old_issues_to_anonymise->update( { 'old_issues.borrowernumber' => $anonymous_patron } );
217
        $nb_rows += $last_borrowers_to_anonymise->update( { 'items_last_borrower.borrowernumber' => $anonymous_patron } );
217
        $last_borrowers_to_anonymise->update( { 'items_last_borrower.borrowernumber' => $anonymous_patron } );
218
    }
218
    }
219
    return $nb_rows;
219
    return $nb_rows;
220
}
220
}
221
- 

Return to bug 23260