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

(-)a/misc/cronjobs/cleanup_database.pl (-2 / +1 lines)
Lines 408-412 sub DeleteSpecialHolidays { Link Here
408
        WHERE DATE( CONCAT( year, '-', month, '-', day ) ) < DATE_SUB( CAST(NOW() AS DATE), INTERVAL ? DAY );
408
        WHERE DATE( CONCAT( year, '-', month, '-', day ) ) < DATE_SUB( CAST(NOW() AS DATE), INTERVAL ? DAY );
409
    });
409
    });
410
    my $count = $sth->execute( $days ) + 0;
410
    my $count = $sth->execute( $days ) + 0;
411
    print "Removed $count unqiue holidays\n" if $verbose;
411
    print "Removed $count unique holidays\n" if $verbose;
412
}
412
}
413
- 

Return to bug 16672