Subject: | datetime values added as epoch seconds produce a wrong year |
DataTable.pm at line 440:
# Epoch timestamp
if (! ref( $cell->{'v'} ) ) {
my ($sec,$min,$hour,$mday,$mon,$year) = localtime( $cell->{'v'} );
# must add this - start
$year += 1900;
# must add this - stop
@initial_date_digits = ( $year, $mon, $mday, $hour, $min, $sec );
} elsif ( $cell->{'v'}->isa('DateTime') ) {