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

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

Return to bug 23260