Skip to content

Commit

Permalink
Item11869: Remove check for years < 60
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@15446 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
GeorgeClark authored and GeorgeClark committed Sep 27, 2012
1 parent 1a5d015 commit daa03ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/Foswiki/Time.pm
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ sub parseTime {
return undef if ( defined($h) && ( $h < 0 || $h > 24 ) );
return undef if ( defined($m) && ( $m < 0 || $m > 60 ) );
return undef if ( defined($s) && ( $s < 0 || $s > 60 ) );
return undef if ( defined($year) && $year < 60 );

#return undef if ( defined($year) && $year < 60 );

my $day = $D || 1;
my $hour = $h || 0;
Expand Down

0 comments on commit daa03ad

Please sign in to comment.