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

(-)a/misc/maintenance/pseudonymize_statistics.pl (-2 / +1 lines)
Lines 72-78 if ( !$confirm ) { Link Here
72
}
72
}
73
73
74
while ( my $statistic = $statistics->next ) {
74
while ( my $statistic = $statistics->next ) {
75
    Koha::PseudonymizedTransaction->new_from_statistic($statistic)->store();
75
    Koha::PseudonymizedTransaction->create_from_statistic($statistic);
76
}
76
}
77
77
78
print $statistics->count() . " statistics pseudonymized\n" if $verbose;
78
print $statistics->count() . " statistics pseudonymized\n" if $verbose;
79
- 

Return to bug 39652