From a666910848414f2d9704ff2930ccf4071ebd8248 Mon Sep 17 00:00:00 2001 From: foobar Date: Sun, 3 Sep 2000 03:50:59 +0000 Subject: [PATCH] Fixed bug #6409. # And propably numerous other..? Either I am wrong or the documentation is. --- ext/standard/datetime.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index c98fd2ead7..44298107f7 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -640,9 +640,6 @@ PHP_FUNCTION(checkdate) m = (*month)->value.lval; d = (*day)->value.lval; - if (y < 100) - y += 1900; - if (y < 0 || y > 32767) { RETURN_FALSE; } -- 2.40.0