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

(-)a/misc/cronjobs/fines.pl (-1 / +3 lines)
Lines 157-162 for my $overdue ( @{$overdues} ) { Link Here
157
        && ( $amount && $amount > 0 )
157
        && ( $amount && $amount > 0 )
158
      )
158
      )
159
    {
159
    {
160
        # if the issue changed before the script got to it, then pass on it.
161
        my $issue = Koha::Checkouts->find({ issue_id => $overdue->{issue_id} });
162
        next if ( ! $issue or $issue->date_due ne $overdue->{date_due} );
160
        UpdateFine(
163
        UpdateFine(
161
            {
164
            {
162
                issue_id       => $overdue->{issue_id},
165
                issue_id       => $overdue->{issue_id},
163
- 

Return to bug 18855