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

(-)a/misc/cronjobs/fines.pl (-2 / +1 lines)
Lines 130-136 for my $overdue ( @{$overdues} ) { Link Here
130
    # Don't update the fine if today is a holiday.
130
    # Don't update the fine if today is a holiday.
131
    # This ensures that dropbox mode will remove the correct amount of fine.
131
    # This ensures that dropbox mode will remove the correct amount of fine.
132
    if ( $mode eq 'production' && !$is_holiday{$branchcode} ) {
132
    if ( $mode eq 'production' && !$is_holiday{$branchcode} ) {
133
        if ( $amount > 0 ) {
133
        if ( $amount && $amount > 0 ) {
134
            UpdateFine(
134
            UpdateFine(
135
                {
135
                {
136
                    issue_id       => $overdue->{issue_id},
136
                    issue_id       => $overdue->{issue_id},
137
- 

Return to bug 19750