]> granicus.if.org Git - php/commitdiff
- MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps.
authorDerick Rethans <derick@php.net>
Fri, 22 Feb 2008 09:48:18 +0000 (09:48 +0000)
committerDerick Rethans <derick@php.net>
Fri, 22 Feb 2008 09:48:18 +0000 (09:48 +0000)
NEWS
ext/date/lib/timelib.h

diff --git a/NEWS b/NEWS
index 4cfd3ca76fa8f6d80dfe76edb947d1ea7783b1ff..557776462d1e3cc8fcfa671ff58d64f622b9e475 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,8 @@ PHP                                                                        NEWS
 - Upgraded PCRE to version 7.6 (Nuno)
 
 
+- Fixed bug #44209 (strtotime() doesn't support 64 bit timestamps on 64 bit
+  platforms). (Derick)
 - Fixed bug #44197 (socket array keys lost on socket_select). (Felipe)
 - Fixed bug #44191 (preg_grep messes up array index). (Felipe)
 - Fixed bug #44189 (PDO setAttribute() does not properly validate values for 
index da6fb584174b64a0095242cae17f47ca2978e289..af7e7118b6ad81a9e5d7b11f1f519d927621ab0b 100644 (file)
@@ -22,6 +22,9 @@
 #define __TIMELIB_H__
 
 #include "timelib_structs.h"
+#if HAVE_LIMITS_H
+#include <limits.h>
+#endif
 
 #define TIMELIB_NONE             0x00
 #define TIMELIB_OVERRIDE_TIME    0x01